From 0272c87213d48cfcba8d2ab50f9cf28450a11a9f Mon Sep 17 00:00:00 2001 From: he <10978375@qq.com> Date: Thu, 8 Dec 2022 18:11:23 +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 --- IRaCIS.Core.Application/IRaCIS.Core.Application.xml | 5 +++++ .../Reading/ReadingImageTask/ReadingImageTaskService.cs | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index 7b41c457..c1245cab 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -2530,6 +2530,11 @@ 任务Id + + + Base64编码 + + 任务Id diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 2e1d41f4..3e77c18b 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1111,7 +1111,7 @@ namespace IRaCIS.Application.Services } - ReadingTableAnswerRowInfo rowInfo = await _readingTableAnswerRowInfoRepository.Where(x => x.Id == (inDto.RowId ?? default(Guid))).AsNoTracking().FirstOrDefaultAsync(); + ReadingTableAnswerRowInfo rowInfo = await _readingTableAnswerRowInfoRepository.Where(x => x.Id == (inDto.RowId ?? default(Guid))).FirstOrDefaultAsync(); rowInfo = rowInfo == null ? new ReadingTableAnswerRowInfo() : rowInfo; @@ -1167,6 +1167,8 @@ namespace IRaCIS.Application.Services IsDicomReading = rowInfo.IsDicomReading, IsCurrentTaskAdd = isCurrentTaskAdd, FristAddTaskNum = rowInfo.FristAddTaskNum, + PictureBaseStr=rowInfo.PictureBaseStr, + NumberOfFrames=rowInfo.NumberOfFrames, RowIndex = rowInfo.RowIndex, InstanceId = rowInfo.InstanceId, SeriesId = rowInfo.SeriesId,