From a2dd550a72f2d07ee29fc8d015553924928efbd3 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Tue, 3 Sep 2024 16:17:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Common/DTO/FrontAuditConfigViewModel.cs | 5 +++++ IRaCIS.Core.Domain/Common/FrontAuditConfig.cs | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs index e1ca30669..13a4d84e2 100644 --- a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs +++ b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs @@ -150,6 +150,11 @@ namespace IRaCIS.Core.Application.ViewModel public DateTime UpdateTime { get; set; } public Guid UpdateUserId { get; set; } public string Code { get; set; } = string.Empty; + + /// + /// 字段的英文值 + /// + public string CodeEn { get; set; } = string.Empty; public Guid? ParentId { get; set; } public bool IsEnable { get; set; } public Guid? ModuleTypeId { get; set; } diff --git a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs index 69347fb0b..272ad5060 100644 --- a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs +++ b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs @@ -82,6 +82,12 @@ namespace IRaCIS.Core.Domain.Models public string Code { get; set; } = String.Empty; + /// + /// 字段的英文值 + /// + public string CodeEn { get; set; } = string.Empty; + + //前端渲染数组 数组名 和数组值 public string ChildDataLabel { get; set; }