Test.EIImageViewer
parent
fe4ea38784
commit
d5d4d4b539
|
@ -428,6 +428,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public string OrderMark { get; set; } = string.Empty;
|
||||
|
||||
|
||||
public string OrderMarkName { get; set; } = string.Empty;
|
||||
|
||||
public Guid RowId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
@ -469,6 +472,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
/// </summary>
|
||||
public string RowIndex { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// RowIndex
|
||||
/// </summary>
|
||||
public decimal RowIndexNum { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 是Dicom阅片
|
||||
|
|
|
@ -405,7 +405,11 @@ namespace IRaCIS.Application.Services
|
|||
.WhereIf(inDto.QuestionId != null, x => x.QuestionId == inDto.QuestionId)
|
||||
.ProjectTo<GetTableAnswerRowInfoOutDto>(_mapper.ConfigurationProvider).OrderBy(x => x.ShowOrder).ThenBy(x => x.RowIndex)
|
||||
.ToListAsync();
|
||||
result.ForEach(x =>
|
||||
{
|
||||
|
||||
x.OrderMarkName = x.OrderMark + x.RowIndexNum.GetLesionMark();
|
||||
});
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
@ -86,6 +86,7 @@ namespace IRaCIS.Core.Application.Service
|
|||
.ForMember(d => d.ShowOrder, u => u.MapFrom(s => s.ReadingQuestionTrial.ShowOrder))
|
||||
.ForMember(d => d.OrderMark, u => u.MapFrom(s => s.ReadingQuestionTrial.OrderMark))
|
||||
.ForMember(d => d.RowIndex, u => u.MapFrom(s => s.RowIndex.ToString()))
|
||||
.ForMember(d => d.RowIndexNum, u => u.MapFrom(s => s.RowIndex))
|
||||
.ForMember(d => d.RowId, u => u.MapFrom(s => s.Id));
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue