From 6bb621b8b81ee158d403baa1fabedaec52678617 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 16 Sep 2022 11:41:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/Dto/ReadingImageTaskViewModel.cs | 5 +++++ .../Service/Reading/ReadingImageTaskService.cs | 2 ++ 2 files changed, 7 insertions(+) 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,