From cdd8250a0c2b641417398f8e5ca59adf00021e0e Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Wed, 28 Aug 2024 11:22:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Common/DTO/FrontAuditConfigViewModel.cs | 8 ++++++++ IRaCIS.Core.Domain/Common/FrontAuditConfig.cs | 7 +++++++ 2 files changed, 15 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs index 19575e63c..e1ca30669 100644 --- a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs +++ b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs @@ -220,6 +220,12 @@ namespace IRaCIS.Core.Application.ViewModel public string ChildDataLabel { get; set; } + + /// + /// 前端渲染数组 数组名 和数组值 英文名称 + /// + public string ChildDataEnLabel { get; set; } = string.Empty; + /// /// 子数据Value /// @@ -274,6 +280,8 @@ namespace IRaCIS.Core.Application.ViewModel /// public string ForeignKeyEnText { get; set; } = string.Empty; + + /// /// 接口名 diff --git a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs index 858d8a4db..7a6f06dd6 100644 --- a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs +++ b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs @@ -84,6 +84,13 @@ namespace IRaCIS.Core.Domain.Models //前端渲染数组 数组名 和数组值 public string ChildDataLabel { get; set; } + + + /// + /// 前端渲染数组 数组名 和数组值 英文名称 + /// + public string ChildDataEnLabel { get; set; } = string.Empty; + public string ChildDataValue { get; set; }