From c8db183b4369aba97b3cec9ae72738c6fa1907f8 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Mon, 25 Jul 2022 13:46:05 +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 | 3 +++ .../Service/Reading/ReadingMedicalReviewService.cs | 1 + 2 files changed, 4 insertions(+) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs index 579d12dd4..0e98e904a 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs @@ -239,6 +239,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto /// public string ImagePath { get; set; } = string.Empty; + + public string FileName { get; set; } = string.Empty; + } public class SendMedicalReviewDialogInDto diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs index 5745f25f8..65c55e024 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingMedicalReviewService.cs @@ -440,6 +440,7 @@ namespace IRaCIS.Core.Application.Service ImagePath=inDto.ImagePath, UserTypeEnumInt = _userInfo.UserTypeEnumInt, VisitTaskId = visitTaskId, + FileName=inDto.FileName, DisagreeReason = inDto.DisagreeReason, DoctorUserIdeaEnum = inDto.DoctorUserIdeaEnum, IsApplyHeavyReading = inDto.IsApplyHeavyReading,