仲裁问题排序修改

Test_IRC_Net8
he 2025-08-06 15:04:18 +08:00
parent 75abc7834b
commit 1050e988c3
2 changed files with 4 additions and 1 deletions

View File

@ -2000,6 +2000,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
{
public Guid ReadingQuestionTrialId { get; set; }
public int ShowOrder { get; set; }
/// <summary>
/// 裁判百分比或绝对值的相差值
/// </summary>

View File

@ -43,11 +43,12 @@ namespace IRaCIS.Core.Application.Service
DictionaryCode = x.DictionaryCode,
JudgeType = x.JudgeType,
Type = x.Type,
ShowOrder= x.ShowOrder,
Unit = x.Unit,
ReadingQuestionTrialId = x.Id,
JudgeDifferenceValue = x.JudgeDifferenceValue,
JudgeDifferenceType = x.JudgeDifferenceType,
}).ToListAsync();
}).OrderBy(x=>x.ShowOrder).ToListAsync();
return (result, new