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
continuous-integration/drone/push Build is passing
Details
commit
7ee821aebd
|
@ -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>
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue