diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs
index 5c983c3cc..69aefb666 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 3e77c18b4..b134ebc27 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 01c2e96d2..03786e9e0 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