diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 18308a6c0..b095ac07b 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -40,6 +40,17 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public string QuestionName { get; set; } + /// + /// 类型 + /// + public string Type { get; set; } + + + /// + /// 类型值 + /// + public string TypeValue { get; set; } + /// /// 序号标记 /// diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs index 30d7fee57..59b34ddb1 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTaskService.cs @@ -226,6 +226,8 @@ namespace IRaCIS.Application.Services QuestionId = x.Id, GroupName = x.GroupName, IsShowInDicom=x.IsShowInDicom, + Type=x.Type, + TypeValue=x.TypeValue, QuestionName = x.QuestionName, ShowOrder = x.ShowOrder, @@ -240,6 +242,8 @@ namespace IRaCIS.Application.Services QuestionId = x.Id, IsShowInDicom = x.IsShowInDicom, QuestionName = x.QuestionName, + Type=x.Type, + TypeValue=x.TypeValue, ShowOrder = x.ShowOrder, OrderMark=x.OrderMark, @@ -280,6 +284,8 @@ namespace IRaCIS.Application.Services QuestionName = x.QuestionName, QuestionId = x.ReadingQuestionId, TableQuestionId = x.Id, + Type=x.Type, + TypeValue=x.TypeValue, RowIndex = row.RowIndex, ShowOrder = x.ShowOrder,