//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2022-03-28 16:43:12 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 using System; using IRaCIS.Core.Domain.Share; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace IRaCIS.Core.Domain.Models { /// ///FrontAuditConfig /// [Table("FrontAuditConfig")] public class FrontAuditConfig : Entity, IAuditUpdate, IAuditAdd { /// /// Value /// public string Value { get; set; } /// /// ValueCN /// public string ValueCN { get; set; } /// /// Description /// public string Description { get; set; } /// /// CreateTime /// public DateTime CreateTime { get; set; } /// /// CreateUserId /// public Guid CreateUserId { get; set; } /// /// UpdateTime /// public DateTime UpdateTime { get; set; } /// /// UpdateUserId /// public Guid UpdateUserId { get; set; } /// /// Code /// public string Code { get; set; } /// /// ParentId /// public Guid? ParentId { get; set; } /// /// IsEnable /// public bool? IsEnable { get; set; } /// /// IsConfig /// public bool? IsConfig { get; set; } /// /// ModuleTypeId /// public string ModuleTypeId { get; set; } /// /// OptTypeId /// public string OptTypeId { get; set; } /// /// ChildrenTypeId /// public string ChildrenTypeId { get; set; } public bool? IsShowParent { get; set; } public string ConfigType { get; set; } public int? Sort { get; set; } public string EnumList { get; set; } public string DictionaryKey { get; set; } public string EnumType { get; set; } public string ObjectTypeId { get; set; } public bool? IsShowByTrialConfig { get; set; } public string ByTrialConfig { get; set; } /// /// 是否向前站位 /// public bool? IsForwardPosition { get; set; } /// /// 标识 /// public string Identification { get; set; } /// /// 是否有签名 /// public bool? IsHaveSign { get; set; } /// /// 是否有原因 /// public bool? IsHaveReason { get; set; } /// /// 是否完成 /// public bool? IsFinish { get; set; } /// /// 是否加入计划 /// public bool? IsJoinPlan { get; set; } /// /// 数据类型 /// public string DataType { get; set; } /// /// 子数据Lable /// public string ChildDataLabel { get; set; } /// /// 子数据Value /// public string ChildDataValue { get; set; } /// /// 是否为特殊类型 /// public bool? IsSpecialType { get; set; } } }