修改字典数据

Uat_Study
hang 2022-05-31 16:05:51 +08:00
parent f658a55bf1
commit 5241be7aa1
1 changed files with 7 additions and 4 deletions

View File

@ -55,24 +55,27 @@ namespace IRaCIS.Application.Contracts
} }
public class BasicDicSelect public class BasicDicSelectxiu
{ {
public Guid Id { get; set; } public Guid Id { get; set; }
public string Code { get; set; } = string.Empty; public string Code { get; set; } = string.Empty;
public string ValueCN { get; set; } = string.Empty; public string ValueCN { get; set; } = string.Empty;
public string Value { get; set; } = string.Empty; public string Value { get; set; } = string.Empty;
public int ShowOrder { get; set; } public int ShowOrder { get; set; }
public Guid? ParentId { get; set; } public Guid? ParentId { get; set; }
public string ParentCode { get; set; } = string.Empty; public string ParentCode { get; set; } = string.Empty;
public int? ParentChildCodeEnum { get; set; }
public string ChildGroup { get; set; } = string.Empty; public string ChildGroup { get; set; } = string.Empty;
public int? ParentChildCodeEnum { get; set; } public DicDataTypeEnum DataTypeEnum { get; set; }
public bool IsEnumInt => System.Text.RegularExpressions.Regex.IsMatch(Code, @"^\d*$");
} }