添加 EnumType

Uat_Study
he 2022-03-31 09:24:47 +08:00
parent cf0c28a5ad
commit 7514bf8d08
3 changed files with 8 additions and 2 deletions

View File

@ -46,6 +46,8 @@ namespace IRaCIS.Core.Application.ViewModel
public string? DictionaryKey { get; set; } 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 DictionaryKey { get; set; } = string.Empty;
public string EnumType { get; set; } = string.Empty;
} }

View File

@ -71,8 +71,8 @@ namespace IRaCIS.Core.Application.Service
ValueCN = data.ValueCN, ValueCN = data.ValueCN,
ChildrenTypeValue = leftchildrenType.Value, ChildrenTypeValue = leftchildrenType.Value,
EnumList=data.EnumList, EnumList=data.EnumList,
DictionaryKey=data.DictionaryKey DictionaryKey=data.DictionaryKey,
EnumType=data.EnumType,
}; };
query = query query = query

View File

@ -106,6 +106,8 @@ namespace IRaCIS.Core.Domain.Models
public string DictionaryKey { get; set; } public string DictionaryKey { get; set; }
public string EnumType { get; set; }
} }