diff --git a/IRaCIS.Core.Application/Service/Common/DTO/DictionaryModel.cs b/IRaCIS.Core.Application/Service/Common/DTO/DictionaryModel.cs index 1574dd2e9..303514828 100644 --- a/IRaCIS.Core.Application/Service/Common/DTO/DictionaryModel.cs +++ b/IRaCIS.Core.Application/Service/Common/DTO/DictionaryModel.cs @@ -55,24 +55,27 @@ namespace IRaCIS.Application.Contracts } - public class BasicDicSelect + public class BasicDicSelectxiu { public Guid Id { get; set; } public string Code { get; set; } = string.Empty; - public string ValueCN { get; set; } = string.Empty; public string Value { get; set; } = string.Empty; - public int ShowOrder { get; set; } public Guid? ParentId { get; set; } public string ParentCode { get; set; } = string.Empty; + public int? ParentChildCodeEnum { get; set; } + 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*$"); + }