Compare commits
2 Commits
5eb152a5af
...
02e9d1b7cd
Author | SHA1 | Date |
---|---|---|
|
02e9d1b7cd | |
|
1050e988c3 |
|
@ -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