From 153dbd2016d3e64a14307fda6bddc95d0b321b59 Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Thu, 6 Mar 2025 13:12:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Document/TrialFileTypeService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs b/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs index 32f568111..8fff2c9f3 100644 --- a/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs +++ b/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs @@ -153,7 +153,7 @@ public class TrialFileTypeService(IRepository _trialFileTypeRepos result.Add(new TrialFileTypeData() { ArchiveTypeEnum = type, - TrialFileTypeList = trialFileTypeList.Where(x => x.ArchiveTypeEnum == type).OrderBy(x=>x.ShowOrder).ToList() + TrialFileTypeList = trialFileTypeList.Where(x => x.ArchiveTypeEnum == type).OrderByDescending(x=>x.SysFileTypeId).ThenBy(x=>x.ShowOrder).ToList() }); }