Merge branch 'Test_IRC_Net8' of https://gitea.frp.extimaging.com/XCKJ/irc-netcore-api into Test_IRC_Net8
continuous-integration/drone/push Build is passing Details

Uat_IRC_Net8
hang 2025-08-06 16:05:42 +08:00
commit 7ee821aebd
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 Guid ReadingQuestionTrialId { get; set; }
public int ShowOrder { get; set; }
/// <summary> /// <summary>
/// 裁判百分比或绝对值的相差值 /// 裁判百分比或绝对值的相差值
/// </summary> /// </summary>

View File

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