From 1b15abee23d358ca789d3d310720fd6573f5be48 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 11 Nov 2022 10:07:02 +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 | 6 ++++++ .../Reading/ReadingImageTask/ReadingImageTaskService.cs | 2 ++ 2 files changed, 8 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index e023093f..6fa2888b 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -884,6 +884,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public int? DigitPlaces { get; set; } = 2; + + /// + /// 标准类型 + /// + public CriterionType CriterionType { get; set; } + public bool IsExistsNoDicomFile { get; set; } = false; public string TaskBlindName { get; set; } diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 42502dcf..67d917fb 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1205,6 +1205,7 @@ namespace IRaCIS.Application.Services x.IsReadingShowPreviousResults, x.IsReadingShowSubjectInfo, x.DigitPlaces, + x.CriterionType, }).FirstOrDefaultAsync(); task.IsReadingShowPreviousResults = criterionInfo.IsReadingShowPreviousResults; @@ -1222,6 +1223,7 @@ namespace IRaCIS.Application.Services })).Count() > 0; task.DigitPlaces = criterionInfo.DigitPlaces; + task.CriterionType = criterionInfo.CriterionType; return task; }