From 1050e988c3f2b7311721436292b911e5fa9fd9a0 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Wed, 6 Aug 2025 15:04:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=B2=E8=A3=81=E9=97=AE=E9=A2=98=E6=8E=92?= =?UTF-8?q?=E5=BA=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Reading/Dto/ReadingImageTaskViewModel.cs | 2 ++ .../Reading/ReadingImageTask/ReadingJudgeTaskService.cs | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs index fb89ce93b..ba9f91aff 100644 --- a/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs +++ b/IRaCIS.Core.Application/Service/Reading/Dto/ReadingImageTaskViewModel.cs @@ -2000,6 +2000,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto { public Guid ReadingQuestionTrialId { get; set; } + public int ShowOrder { get; set; } + /// /// 裁判百分比或绝对值的相差值 /// diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs index cd7fdead0..718bccdd3 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingJudgeTaskService.cs @@ -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