Test.EIImageViewer
parent
ead52e5aa5
commit
0272c87213
|
@ -2530,6 +2530,11 @@
|
||||||
任务Id
|
任务Id
|
||||||
</summary>
|
</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SubmitTableQuestionInDto.PictureBaseStr">
|
||||||
|
<summary>
|
||||||
|
Base64编码
|
||||||
|
</summary>
|
||||||
|
</member>
|
||||||
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SubmitTableQuestionInDto.VisitTaskId">
|
<member name="P:IRaCIS.Core.Application.Service.Reading.Dto.SubmitTableQuestionInDto.VisitTaskId">
|
||||||
<summary>
|
<summary>
|
||||||
任务Id
|
任务Id
|
||||||
|
|
|
@ -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;
|
rowInfo = rowInfo == null ? new ReadingTableAnswerRowInfo() : rowInfo;
|
||||||
|
|
||||||
|
@ -1167,6 +1167,8 @@ namespace IRaCIS.Application.Services
|
||||||
IsDicomReading = rowInfo.IsDicomReading,
|
IsDicomReading = rowInfo.IsDicomReading,
|
||||||
IsCurrentTaskAdd = isCurrentTaskAdd,
|
IsCurrentTaskAdd = isCurrentTaskAdd,
|
||||||
FristAddTaskNum = rowInfo.FristAddTaskNum,
|
FristAddTaskNum = rowInfo.FristAddTaskNum,
|
||||||
|
PictureBaseStr=rowInfo.PictureBaseStr,
|
||||||
|
NumberOfFrames=rowInfo.NumberOfFrames,
|
||||||
RowIndex = rowInfo.RowIndex,
|
RowIndex = rowInfo.RowIndex,
|
||||||
InstanceId = rowInfo.InstanceId,
|
InstanceId = rowInfo.InstanceId,
|
||||||
SeriesId = rowInfo.SeriesId,
|
SeriesId = rowInfo.SeriesId,
|
||||||
|
|
Loading…
Reference in New Issue