From 3a56b52f9cb2be40fd97cc449cfe32e696ff07b9 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Wed, 28 Dec 2022 11:21:08 +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 | 7 +++----
.../Reading/MedicalAudit/ReadingMedicalReviewService.cs | 2 +-
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs
index ec43349d1..b9fa48018 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingMedicalReviewDto.cs
@@ -305,10 +305,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
- ///
- /// 图片路径
- ///
- public string ImagePath { get; set; } = string.Empty;
+ public List FileList { get; set; } = new List();
+
+
public string FileName { get; set; } = string.Empty;
diff --git a/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs b/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs
index fcaa42908..44ebf998f 100644
--- a/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/MedicalAudit/ReadingMedicalReviewService.cs
@@ -614,7 +614,7 @@ namespace IRaCIS.Core.Application.Service
TaskMedicalReviewId = inDto.TaskMedicalReviewId,
UserTypeShortName = _userInfo.UserTypeShortName,
Content = inDto.Content,
- ImagePath=inDto.ImagePath,
+ ImagePath=JsonConvert.SerializeObject(inDto.FileList),
UserTypeEnumInt = _userInfo.UserTypeEnumInt,
VisitTaskId = visitTaskId,
FileName=inDto.FileName,