From 39c8d59a1fdddc610e8c6599a1d9b9ab7c84a276 Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Fri, 9 Dec 2022 10:28:45 +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/ReadingImageTaskViewModel.cs | 4 ++-- .../Reading/ReadingImageTask/ReadingImageTaskService.cs | 4 ++-- .../Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index 5c983c3c..69aefb66 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -1241,9 +1241,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto public decimal RowIndex { get; set; } /// - /// Base64编码 + /// 截图地址 /// - public string PictureBaseStr { get; set; } = string.Empty; + public string PicturePath { get; set; } = string.Empty; /// /// 任务Id diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 3e77c18b..b134ebc2 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1127,7 +1127,7 @@ namespace IRaCIS.Application.Services rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd; rowInfo.NumberOfFrames = inDto.NumberOfFrames; rowInfo.FristAddTaskNum = inDto.FristAddTaskNum; - rowInfo.PictureBaseStr = inDto.PictureBaseStr; + rowInfo.PicturePath = inDto.PicturePath; rowInfo.RowIndex = inDto.RowIndex; rowInfo.InstanceId = inDto.InstanceId; rowInfo.SeriesId = inDto.SeriesId; @@ -1167,7 +1167,7 @@ namespace IRaCIS.Application.Services IsDicomReading = rowInfo.IsDicomReading, IsCurrentTaskAdd = isCurrentTaskAdd, FristAddTaskNum = rowInfo.FristAddTaskNum, - PictureBaseStr=rowInfo.PictureBaseStr, + PicturePath = rowInfo.PicturePath, NumberOfFrames=rowInfo.NumberOfFrames, RowIndex = rowInfo.RowIndex, InstanceId = rowInfo.InstanceId, diff --git a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs index 01c2e96d..03786e9e 100644 --- a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs +++ b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs @@ -98,9 +98,9 @@ namespace IRaCIS.Core.Domain.Models public string OrderMark { get; set; } = string.Empty; /// - /// Base64编码 + /// 截图地址 /// - public string PictureBaseStr { get; set; } = string.Empty; + public string PicturePath { get; set; } = string.Empty; /// /// 第一次添加的任务ID