From 2f94165f92ff242392e54855f608ee5c692ec746 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Sat, 22 Jun 2024 16:50:14 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=95=E4=BD=8D=E6=8E=92=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CustomerOrgs/CustomerOrgAppService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shentun.Peis.Application/CustomerOrgs/CustomerOrgAppService.cs b/src/Shentun.Peis.Application/CustomerOrgs/CustomerOrgAppService.cs index f357ae3..18224d7 100644 --- a/src/Shentun.Peis.Application/CustomerOrgs/CustomerOrgAppService.cs +++ b/src/Shentun.Peis.Application/CustomerOrgs/CustomerOrgAppService.cs @@ -298,7 +298,7 @@ namespace Shentun.Peis.CustomerOrgs ShortName = s.ShortName, SimpleCode = s.SimpleCode, IsChild = parentIds.Any() && parentIds.Contains(s.Id) ? 'Y' : 'N', - }).OrderBy(o => o.DisplayOrder).ToList(); + }).OrderByDescending(o => o.DisplayOrder).ToList(); return entListDto; }