diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 8b9de17ed..84f5375b9 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -36,6 +36,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public int RowIndex { get; set; } + /// + /// 问题类型 + /// + public QuestionType? QuestionType { get; set; } + public string GroupName { get; set; } public string QuestionName { get; set; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs index 3b85dc6be..7dbc3c3a7 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs @@ -342,6 +342,7 @@ namespace IRaCIS.Application.Services GroupName = x.GroupName, IsShowInDicom = x.IsShowInDicom, Type = x.Type, + QuestionType=x.QuestionType, TypeValue = x.TypeValue, QuestionName = x.QuestionName, ShowOrder = x.ShowOrder, @@ -358,6 +359,7 @@ namespace IRaCIS.Application.Services IsShowInDicom = x.IsShowInDicom, QuestionName = x.QuestionName, Type = x.Type, + QuestionType=x.QuestionType, TypeValue = x.TypeValue, ShowOrder = x.ShowOrder, OrderMark = x.OrderMark,