diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
index 99585941f..552b9e096 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
@@ -364,6 +364,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public QuestionMark? QuestionMark { get; set; }
+ ///
+ /// 问题英文名称
+ ///
+ public string QuestionEnName { get; set; } = string.Empty;
+
+
+
public List ParentTriggerValueList { get; set; }
public List RelevanceValueList { get; set; }
@@ -432,6 +439,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public QuestionMark? QuestionMark { get; set; }
+ ///
+ /// 问题英文名称
+ ///
+ public string QuestionEnName { get; set; } = string.Empty;
+
+
+
}
@@ -877,7 +891,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 数据来源
///
public DataSources? DataSource { get; set; } = DataSources.ManualEntry;
-
+
+ ///
+ /// 问题英文名称
+ ///
+ public string QuestionEnName { get; set; } = string.Empty;
+
+ ///
+ /// 问题英文分组
+ ///
+ public string GroupEnName { get; set; } = string.Empty;
+
public List ParentTriggerValueList { get; set; }
public List RelevanceValueList { get; set; }
public List CalculateQuestionList { get; set; }
@@ -1043,6 +1067,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 序号标记
///
public string OrderMark { get; set; } = string.Empty;
+
+ ///
+ /// 问题英文名称
+ ///
+ public string QuestionEnName { get; set; } = string.Empty;
+
+ ///
+ /// 问题英文分组
+ ///
+ public string GroupEnName { get; set; } = string.Empty;
}
public class GetQuestionCalculateRelationInDto
@@ -1464,6 +1498,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
/// 序号标记
///
public string OrderMark { get; set; } = string.Empty;
+
+ ///
+ /// 问题英文名称
+ ///
+ public string QuestionEnName { get; set; } = string.Empty;
+
+ ///
+ /// 问题英文分组
+ ///
+ public string GroupEnName { get; set; } = string.Empty;
}
@@ -1652,6 +1696,16 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public LimitEdit LimitEdit { get; set; } = LimitEdit.None;
+ ///
+ /// 问题英文名称
+ ///
+ public string QuestionEnName { get; set; } = string.Empty;
+
+ ///
+ /// 问题英文分组
+ ///
+ public string GroupEnName { get; set; } = string.Empty;
+
public List ParentTriggerValueList { get; set; }
public List RelevanceValueList { get; set; }
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingCriterion/ReadingQuestionService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingCriterion/ReadingQuestionService.cs
index 51186ab88..7b0d78bbf 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingCriterion/ReadingQuestionService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingCriterion/ReadingQuestionService.cs
@@ -113,6 +113,13 @@ namespace IRaCIS.Application.Services
), true);
}
+
+
+ public async Task