//-------------------------------------------------------------------- // 此代码由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; using System.Collections.Generic; namespace IRaCIS.Core.Domain.Models { /// ///FrontAuditConfig /// [Table("FrontAuditConfig")] public class FrontAuditConfig : Entity, IAuditUpdate, IAuditAdd { /// /// Value /// public string Value { get; set; } = String.Empty; /// /// ValueCN /// public string ValueCN { get; set; } = String.Empty; /// /// Description /// public string Description { get; set; } = String.Empty; /// /// 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; } = String.Empty; /// /// ParentId /// public Guid? ParentId { get; set; } /// /// IsEnable /// public bool IsEnable { get; set; } /// /// IsConfig /// public bool IsConfig { get; set; } /// /// ModuleTypeId /// public Guid? ModuleTypeId { get; set; } /// /// OptTypeId /// public Guid? OptTypeId { get; set; } /// /// ChildrenTypeId /// public Guid? ChildrenTypeId { get; set; } public int IsShowParent { get; set; } public string ConfigType { get; set; } = String.Empty; public int Sort { get; set; } public string DictionaryKey { get; set; } public string EnumType { get; set; } public Guid? ObjectTypeId { get; set; } public bool IsShowByTrialConfig { get; set; } public string TrialConfigRelyFieldName { 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; } /// /// 日期类型 /// public string DateType { get; set; } = String.Empty; /// /// 字典Code /// public string DictionaryCode { get; set; } = String.Empty; /// /// 字典Type /// public string DictionaryType { get; set; } = String.Empty; /// /// 字典表 /// public string ForeignKeyTableName { get; set; } = String.Empty; /// /// 字典Value /// public string ForeignKeyValue { get; set; } = String.Empty; /// /// 字典 /// public string ForeignKeyText { get; set; } = String.Empty; /// /// 接口名 /// public string InterfaceName { get; set; } = String.Empty; public string TableConfigJsonStr { get; set; } = String.Empty; public string UrlConfigJsonStr { get; set; } = String.Empty; } public class UrlConfig { public bool IsRoute { get; set; } public string RoutePath { get; set; } public bool IsHaveParameters { get; set; } public List ParameterList { get; set; } = new List(); } public class TableConfig { public bool IsList { get; set; } public string ListName { get; set; } = String.Empty; public bool IsFixedColumn { get; set; } public string FixedColumnName { get; set; } = String.Empty; public string ColumnName { get; set; } = String.Empty; public string ColumnValue { get; set; } = String.Empty; public bool IsMerge { get; set; } public string MergeColumnName { get; set; } = String.Empty; } }