diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
index b0f0467be..d1287c704 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingQuestionViewModel.cs
@@ -278,6 +278,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public CustomCalculateMark? CustomCalculateMark { get; set; }
+
+ ///
+ /// IsDepend
+ ///
+ public IsDepend IsDepend { get; set; }
+
///
/// 自定义计算标记
///
@@ -305,6 +311,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string ParentTriggerValue { get; set; } = string.Empty;
public string QuestionName { get; set; } = string.Empty;
public IsRequired IsRequired { get; set; }
+
+
+
public int ShowOrder { get; set; }
public string TypeValue { get; set; } = string.Empty;
public bool IsEnable { get; set; }
diff --git a/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs b/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs
index c4020edf7..8326f5ddc 100644
--- a/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs
+++ b/IRaCIS.Core.Domain/Reading/ReadingCriterionQuestion/ReadingTableQuestionTrial.cs
@@ -123,7 +123,7 @@ namespace IRaCIS.Core.Domain.Models
///
/// IsDepend
///
- public IsDepend? IsDepend { get; set; }
+ public IsDepend IsDepend { get; set; }
///