修改一版

Uat_Study
he 2022-07-07 17:06:10 +08:00
parent c9046e97b7
commit 86d9189991
2 changed files with 3 additions and 3 deletions

View File

@ -189,12 +189,12 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid TaskMedicalReviewId { get; set; }
}
public class ApplyReReadingInDto
public class IRSendMedicalReviewDialogInDto
{
public Guid TrialId { get; set; }
public bool IsCopyOrigenalForms { get; set; }
public bool IsCopyOrigenalForms { get; set; } = false;
public string RequestReReadingReason { get; set; } = string.Empty;

View File

@ -366,7 +366,7 @@ namespace IRaCIS.Core.Application.Service
/// </summary>
/// <param name="inDto"></param>
/// <returns></returns>
public async Task<IResponseOutput> IRSendMedicalReviewDialog(ApplyReReadingInDto inDto)
public async Task<IResponseOutput> IRSendMedicalReviewDialog(IRSendMedicalReviewDialogInDto inDto)
{
var visitTaskId = await _taskMedicalReviewRepository.Where(x => x.Id == inDto.TaskMedicalReviewId).Select(x => x.VisitTaskId).FirstOrDefaultAsync();
if (inDto.IsApplyHeavyReading??false)