This commit is contained in:
he
2022-11-03 17:28:38 +08:00
parent fe4ea38784
commit d5d4d4b539
3 changed files with 13 additions and 0 deletions
@@ -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;
}