修改稽查
This commit is contained in:
@@ -17,115 +17,20 @@ namespace IRaCIS.Core.Domain.Models
|
||||
[Table("FrontAuditConfig")]
|
||||
public class FrontAuditConfig : Entity, IAuditUpdate, IAuditAdd
|
||||
{
|
||||
/// <summary>
|
||||
/// Value
|
||||
/// </summary>
|
||||
|
||||
public string Value { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// ValueCN
|
||||
/// </summary>
|
||||
|
||||
public string ValueCN { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Description
|
||||
/// </summary>
|
||||
|
||||
public string Description { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// CreateTime
|
||||
/// </summary>
|
||||
|
||||
public DateTime CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// CreateUserId
|
||||
/// </summary>
|
||||
|
||||
public Guid CreateUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// UpdateTime
|
||||
/// </summary>
|
||||
|
||||
public DateTime UpdateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// UpdateUserId
|
||||
/// </summary>
|
||||
|
||||
public Guid UpdateUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Code
|
||||
/// </summary>
|
||||
|
||||
public string Code { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// ParentId
|
||||
/// </summary>
|
||||
public Guid? ParentId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// IsEnable
|
||||
/// </summary>
|
||||
|
||||
public bool IsEnable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// IsConfig
|
||||
/// </summary>
|
||||
|
||||
public bool IsConfig { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ModuleTypeId
|
||||
/// </summary>
|
||||
public Guid? ModuleTypeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// OptTypeId
|
||||
/// </summary>
|
||||
public Guid? OptTypeId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ChildrenTypeId
|
||||
/// </summary>
|
||||
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; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 标识
|
||||
/// </summary>
|
||||
public string Identification { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 是否有签名
|
||||
/// </summary>
|
||||
@@ -147,27 +52,69 @@ namespace IRaCIS.Core.Domain.Models
|
||||
public bool IsJoinPlan { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数据类型
|
||||
/// 标识
|
||||
/// </summary>
|
||||
public string Identification { get; set; }
|
||||
|
||||
public Guid? ParentId { get; set; }
|
||||
|
||||
|
||||
public bool IsEnable { get; set; }
|
||||
|
||||
public int Sort { get; set; }
|
||||
|
||||
|
||||
public Guid? ModuleTypeId { get; set; }
|
||||
|
||||
public Guid? ObjectTypeId { get; set; }
|
||||
public Guid? OptTypeId { get; set; }
|
||||
|
||||
public Guid? ChildrenTypeId { get; set; }
|
||||
|
||||
public int IsShowParent { get; set; }
|
||||
|
||||
public string InterfaceName { get; set; } = String.Empty;
|
||||
|
||||
//前端使用 C M
|
||||
public string ConfigType { get; set; } = String.Empty;
|
||||
|
||||
|
||||
//翻译的字段名 这里有可能是一个数组名 那么具体的翻译字段名就不是这个了
|
||||
public string Code { get; set; } = String.Empty;
|
||||
|
||||
|
||||
//前端渲染数组 数组名 和数组值
|
||||
public string ChildDataLabel { get; set; }
|
||||
public string ChildDataValue { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 翻译的字典名(单个字段翻译的时候)
|
||||
/// </summary>
|
||||
|
||||
public string DictionaryCode { get; set; } = String.Empty;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 前端展示类型 Router, Array,Table
|
||||
/// </summary>
|
||||
|
||||
public string DataType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 子数据Lable
|
||||
/// </summary>
|
||||
// 后端翻译的类型 对应前端界面 "",Dictionary,Date
|
||||
public string EnumType { get; set; }
|
||||
|
||||
|
||||
public string ChildDataLabel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 子数据Value
|
||||
/// 翻译的类型 FrontAudit 的描述 可能是Id Code
|
||||
/// </summary>
|
||||
|
||||
public string ChildDataValue { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为特殊类型
|
||||
/// </summary>
|
||||
public bool IsSpecialType { get; set; }
|
||||
public string DictionaryType { get; set; } = String.Empty;
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -176,49 +123,49 @@ namespace IRaCIS.Core.Domain.Models
|
||||
|
||||
public string DateType { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 字典Code
|
||||
/// </summary>
|
||||
|
||||
public string DictionaryCode { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 字典Type
|
||||
/// </summary>
|
||||
|
||||
public string DictionaryType { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 字典表
|
||||
/// </summary>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/// <summary> 字典表 </summary>
|
||||
public string ForeignKeyTableName { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 字典Value
|
||||
/// </summary>
|
||||
|
||||
/// <summary> 字典Value </summary>
|
||||
public string ForeignKeyValue { get; set; } = String.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 字典
|
||||
/// </summary>
|
||||
|
||||
/// <summary> 字典 </summary>
|
||||
public string ForeignKeyText { get; set; } = String.Empty;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 接口名
|
||||
/// </summary>
|
||||
|
||||
public string InterfaceName { get; set; } = String.Empty;
|
||||
|
||||
|
||||
|
||||
public string TableConfigJsonStr { get; set; } = String.Empty;
|
||||
|
||||
public string UrlConfigJsonStr { get; set; } = String.Empty;
|
||||
|
||||
|
||||
|
||||
#region 废弃
|
||||
//未知是否有用
|
||||
public bool IsConfig { get; set; }
|
||||
public string DictionaryKey { get; set; }
|
||||
public bool IsShowByTrialConfig { get; set; }
|
||||
public string TrialConfigRelyFieldName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为特殊类型
|
||||
/// </summary>
|
||||
public bool IsSpecialType { get; set; }
|
||||
#endregion
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -257,7 +204,6 @@ namespace IRaCIS.Core.Domain.Models
|
||||
|
||||
public string MergeColumnName { get; set; } = String.Empty;
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user