diff --git a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs index 0a667ce4..8cd1a5f8 100644 --- a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs +++ b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs @@ -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; + } diff --git a/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs b/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs index a83a6497..a582de3e 100644 --- a/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs +++ b/IRaCIS.Core.Application/Service/Common/FrontAuditConfigService.cs @@ -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 diff --git a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs index caca4098..dfcc6c5d 100644 --- a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs +++ b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs @@ -106,6 +106,8 @@ namespace IRaCIS.Core.Domain.Models public string DictionaryKey { get; set; } + public string EnumType { get; set; } + }