diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index 73ce11096..e0859398e 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -1110,6 +1110,10 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public string DictionaryCode { get; set; } = string.Empty;
+ ///
+ /// 问题类型
+ ///
+ public TableQuestionType? QuestionGenre { get; set; }
///
/// Type
@@ -1398,6 +1402,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
///
public string DictionaryCode { get; set; }
+
+ ///
+ /// 问题类型
+ ///
+ public TableQuestionType? QuestionGenre { get; set; }
+
///
/// 项目标准Id
///
diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
index 93ecf831c..d6424ff30 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs
@@ -1785,10 +1785,12 @@ namespace IRaCIS.Application.Services
GroupName = string.Empty,
Id = x.Id,
Type = x.Type,
+ DictionaryCode=x.DictionaryCode,
TableQuestionType = x.TableQuestionType,
DependParentId = x.DependParentId,
IsDepend = x.IsDepend,
QuestionMark = x.QuestionMark,
+ QuestionGenre=x.QuestionGenre,
TypeValue = x.TypeValue,
RelevanceId = x.RelevanceId,
IsRequired = x.IsRequired,
@@ -1805,8 +1807,10 @@ namespace IRaCIS.Application.Services
GroupName = string.Empty,
Id = x.Id,
Type = x.Type,
+ QuestionGenre=x.QuestionGenre,
TableQuestionType = x.TableQuestionType,
DependParentId = x.DependParentId,
+ DictionaryCode = x.DictionaryCode,
IsDepend = x.IsDepend,
QuestionMark = x.QuestionMark,
TypeValue = x.TypeValue,