114 lines
3.3 KiB
C#
114 lines
3.3 KiB
C#
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using APT.BaseData.Domain.Enums;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.MS.Domain.Enums;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
namespace APT.MS.Domain.Entities.LR
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 法律法规
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("法律法规")]
|
|||
|
|
public class T_LR_LAW : MesEntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 类型编号
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("类型编号")]
|
|||
|
|
public string CODE { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("名称")]
|
|||
|
|
[DataFieldIndex(true)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[DataFieldLength(200)]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 版本号
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("版本号")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[DataFieldLength(500)]
|
|||
|
|
public string VERSION_NUM { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 状态 0:废止;1:现行;
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("状态")]
|
|||
|
|
[EnumName("BSLawStatusEnum")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public BSLawStatusEnum LAW_STATUS { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 制修订日期
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("制修订日期")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public DateTime UPDATE_TIME { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 需求类别
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("需求类别")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[DataFieldForeignKey("Nav_LawType")]
|
|||
|
|
public Guid TYPE_ID { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 需求类别
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("需求类别")]
|
|||
|
|
public T_LR_LAW_TYPE Nav_LawType { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 编制单位
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("编制单位")]
|
|||
|
|
public string PREPARED_DEPARTMENT { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 融入人员
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("融入人员")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[DataFieldForeignKey("Nav_User")]
|
|||
|
|
public Guid USER_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 导航属性:识别人员
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("导航属性:融入人员")]
|
|||
|
|
public T_FM_USER Nav_User { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 导航:版本号
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("版本号")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public ICollection<T_LR_LAW_VERSION> Nav_LawVersion { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 导航:关联标准化制度库
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("标准化制度")]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public ICollection<T_LR_LAW_SC_SYSTEM> Nav_LawSCSystem { get; set; }
|
|||
|
|
/// <summary>
|
|||
|
|
/// 施行日期
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("施行日期")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
public DateTime EXECUTE_TIME { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|