修改字典数据
parent
f658a55bf1
commit
5241be7aa1
|
@ -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*$");
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue