diff --git a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs index 0a667ce46..8cd1a5f81 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 a83a64975..a582de3eb 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 caca40986..dfcc6c5d6 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; } + }