From 7164a53267c0d8fe9dd30ec75d8195288601d162 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Tue, 27 Aug 2024 09:46:20 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A8=BD=E6=9F=A5=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 | 7 +++++++ IRaCIS.Core.Domain/Common/FrontAuditConfig.cs | 9 ++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs index 11194fc09..19575e63c 100644 --- a/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs +++ b/IRaCIS.Core.Application/Service/Common/DTO/FrontAuditConfigViewModel.cs @@ -268,6 +268,13 @@ namespace IRaCIS.Core.Application.ViewModel public string ForeignKeyText { get; set; } = string.Empty; + + /// + /// 英文的翻译 + /// + public string ForeignKeyEnText { get; set; } = string.Empty; + + /// /// 接口名 /// diff --git a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs index 9ab746cba..858d8a4db 100644 --- a/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs +++ b/IRaCIS.Core.Domain/Common/FrontAuditConfig.cs @@ -130,7 +130,10 @@ namespace IRaCIS.Core.Domain.Models /// 字典 public string ForeignKeyText { get; set; } = String.Empty; - + /// + /// 英文的翻译 + /// + public string ForeignKeyEnText { get; set; } = string.Empty; public string TableConfigJsonStr { get; set; } = String.Empty; @@ -183,11 +186,15 @@ namespace IRaCIS.Core.Domain.Models public string ListName { get; set; } = String.Empty; public bool IsFixedColumn { get; set; } public string FixedColumnName { get; set; } = String.Empty; + + public string FixedColumnEnName { get; set; } = String.Empty; public string ColumnName { get; set; } = String.Empty; public string ColumnValue { get; set; } = String.Empty; public bool IsMerge { get; set; } public string MergeColumnName { get; set; } = String.Empty; + public string MergeColumnEnName { get; set; } = String.Empty; + public bool IsPicture { get; set; }