添加 EnumType
parent
cf0c28a5ad
commit
7514bf8d08
|
@ -46,6 +46,8 @@ namespace IRaCIS.Core.Application.ViewModel
|
|||
|
||||
public string? DictionaryKey { get; set; }
|
||||
|
||||
public string? EnumType { get; set; }
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
@ -101,6 +103,8 @@ namespace IRaCIS.Core.Application.ViewModel
|
|||
|
||||
public string DictionaryKey { get; set; } = string.Empty;
|
||||
|
||||
public string EnumType { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -71,8 +71,8 @@ namespace IRaCIS.Core.Application.Service
|
|||
ValueCN = data.ValueCN,
|
||||
ChildrenTypeValue = leftchildrenType.Value,
|
||||
EnumList=data.EnumList,
|
||||
DictionaryKey=data.DictionaryKey
|
||||
|
||||
DictionaryKey=data.DictionaryKey,
|
||||
EnumType=data.EnumType,
|
||||
};
|
||||
|
||||
query = query
|
||||
|
|
|
@ -106,6 +106,8 @@ namespace IRaCIS.Core.Domain.Models
|
|||
|
||||
public string DictionaryKey { get; set; }
|
||||
|
||||
public string EnumType { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue