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,