From fbca7f17f837d6ed11aeb1f423e5fd183ccda9bb Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Tue, 20 Sep 2022 16:04:31 +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 | 10 ++++++++++ .../Service/Reading/ReadingImageTaskService.cs | 4 ++++ 2 files changed, 14 insertions(+) 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,