Uat_Study
parent
ead52e5aa5
commit
0272c87213
|
@ -2530,6 +2530,11 @@
|
|||
任务Id
|
||||
</summary>
|
||||
</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">
|
||||
<summary>
|
||||
任务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;
|
||||
|
||||
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue