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