From ead52e5aa5161b3070c55b51b740d30ad3f70ea2 Mon Sep 17 00:00:00 2001
From: he <10978375@qq.com>
Date: Thu, 8 Dec 2022 17:45:27 +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 | 5 +++++
.../Reading/ReadingImageTask/ReadingImageTaskService.cs | 1 +
.../Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs | 5 +++++
3 files changed, 11 insertions(+)
diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index da082ef1e..5c983c3cc 100644
--- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
+++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
@@ -1240,6 +1240,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public decimal RowIndex { get; set; }
+ ///
+ /// Base64编码
+ ///
+ public string PictureBaseStr { 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 3eac488bd..2e1d41f48 100644
--- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs
+++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs
@@ -1127,6 +1127,7 @@ namespace IRaCIS.Application.Services
rowInfo.IsCurrentTaskAdd = isCurrentTaskAdd;
rowInfo.NumberOfFrames = inDto.NumberOfFrames;
rowInfo.FristAddTaskNum = inDto.FristAddTaskNum;
+ rowInfo.PictureBaseStr = inDto.PictureBaseStr;
rowInfo.RowIndex = inDto.RowIndex;
rowInfo.InstanceId = inDto.InstanceId;
rowInfo.SeriesId = inDto.SeriesId;
diff --git a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs
index a73e3b3e1..01c2e96d2 100644
--- a/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs
+++ b/IRaCIS.Core.Domain/Reading/ReadingFormAnswer/ReadingTableAnswerRowInfo.cs
@@ -97,6 +97,11 @@ namespace IRaCIS.Core.Domain.Models
public string OrderMark { get; set; } = string.Empty;
+ ///
+ /// Base64编码
+ ///
+ public string PictureBaseStr { get; set; } = string.Empty;
+
///
/// 第一次添加的任务ID
///