Uat_Study
DK 2022-03-29 10:29:04 +08:00
parent f68f496197
commit aa303a1263
1 changed files with 18 additions and 18 deletions

View File

@ -45,24 +45,24 @@ namespace IRaCIS.Core.Application.ViewModel
public class FrontAuditConfigQuery public class FrontAuditConfigQuery
{ {
///<summary> Value</summary> ///<summary> Value</summary>
public string Value { get; set; } public string Value { get; set; }=string.Empty;
///<summary> ValueCN</summary> ///<summary> ValueCN</summary>
public string ValueCN { get; set; } public string ValueCN { get; set; } = string.Empty;
///<summary> Description</summary> ///<summary> Description</summary>
public string Description { get; set; } public string Description { get; set; } = string.Empty;
///<summary> Code</summary> ///<summary> Code</summary>
public string Code { get; set; } public string Code { get; set; } = string.Empty;
///<summary> OptTypeId </summary> ///<summary> OptTypeId </summary>
public string OptTypeId { get; set; } public string OptTypeId { get; set; } = string.Empty;
///<summary> ChildrenTypeId</summary> ///<summary> ChildrenTypeId</summary>
public string ChildrenTypeId { get; set; } public string ChildrenTypeId { get; set; } = string.Empty;
} }
///<summary> FrontAuditConfigAddOrEdit 列表查询参数模型</summary> ///<summary> FrontAuditConfigAddOrEdit 列表查询参数模型</summary>
public class FrontAuditConfigAddOrEdit public class FrontAuditConfigAddOrEdit
@ -75,17 +75,17 @@ namespace IRaCIS.Core.Application.ViewModel
public Guid CreateUserId { get; set; } public Guid CreateUserId { get; set; }
public DateTime UpdateTime { get; set; } public DateTime UpdateTime { get; set; }
public Guid UpdateUserId { get; set; } public Guid UpdateUserId { get; set; }
public string Code { get; set; } public string Code { get; set; } = string.Empty;
public Guid? ParentId { get; set; } public Guid? ParentId { get; set; }
public bool IsEnable { get; set; } public bool IsEnable { get; set; }
public bool IsConfig { get; set; } public bool IsConfig { get; set; }
public string ModuleTypeId { get; set; } public string ModuleTypeId { get; set; } = string.Empty;
public string OptTypeId { get; set; } public string OptTypeId { get; set; } = string.Empty;
public string ChildrenTypeId { get; set; } public string ChildrenTypeId { get; set; } = string.Empty;
public string ConfigType { get; set; } public string ConfigType { get; set; } = string.Empty;
public bool? IsShowParent { get; set; } public bool? IsShowParent { get; set; }
} }