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; }