From eeb70778b91a358a8477661e0de3cde8a7328cd1 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 22 Jul 2022 13:40:38 +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/ReadingMedicalReviewDto.cs | 4 ++-- .../Service/Reading/ReadingMedicalReviewService.cs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs index 0264452e0..a2e51e465 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs @@ -219,8 +219,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public string DisagreeReason { get; set; } = string.Empty; - public bool IsCopyOrigenalForms { get; set; } - public bool IsCopyFollowForms { get; set; } + public bool? IsCopyOrigenalForms { get; set; } = false; + public bool? IsCopyFollowForms { get; set; } = false; /// /// 是否申请重阅 diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs index 5aac1ab9e..0b96a6818 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs @@ -410,8 +410,8 @@ namespace IRaCIS.Core.Application.Service { await _visitTaskService.ApplyReReading(new ApplyReReadingCommand() { - IsCopyOrigenalForms = inDto.IsCopyOrigenalForms, - IsCopyFollowForms=inDto.IsCopyFollowForms, + IsCopyOrigenalForms = inDto.IsCopyOrigenalForms??false, + IsCopyFollowForms=inDto.IsCopyFollowForms ?? false, RequestReReadingReason = inDto.RequestReReadingReason, RequestReReadingType = RequestReReadingType.DocotorApply, TrialId = inDto.TrialId,