diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index f6c475e1c..46e629946 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -984,6 +984,28 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string OrderMark { get; set; } = string.Empty;
+ ///
+ /// 关联父问题
+ ///
+ public Guid? DependParentId { get; set; }
+
+ ///
+ /// 是否关联
+ ///
+ public IsDepend? IsDepend { get; set; }
+
+ ///
+ /// 表格问题类型
+ ///
+ public TableQuestionType? TableQuestionType { get; set; }
+
+
+ ///
+ /// 问题标识
+ ///
+ public QuestionMark? QuestionMark { get; set; }
+
+
//public List TableQuestions { get; set; }
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
index 4d057b322..212710563 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
@@ -1052,7 +1052,11 @@ namespace IRaCIS.Application.Services
GroupName = string.Empty,
Id = x.Id,
Type=x.Type,
- TypeValue=x.TypeValue,
+ TableQuestionType= x.TableQuestionType,
+ DependParentId=x.DependParentId,
+ IsDepend=x.IsDepend,
+ QuestionMark=x.QuestionMark,
+ TypeValue =x.TypeValue,
RelevanceId=x.RelevanceId,
RelevanceValue=x.RelevanceValue,
ImageCount = 0,