From 90e04b58473644af2302cc7631f963eee0366063 Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Wed, 17 Apr 2024 15:55:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=92=E5=BA=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CommonChars/CommonCharAppService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shentun.Peis.Application/CommonChars/CommonCharAppService.cs b/src/Shentun.Peis.Application/CommonChars/CommonCharAppService.cs index 8610c31..fd3f4c0 100644 --- a/src/Shentun.Peis.Application/CommonChars/CommonCharAppService.cs +++ b/src/Shentun.Peis.Application/CommonChars/CommonCharAppService.cs @@ -104,7 +104,7 @@ namespace Shentun.Peis.CommonChars CommonCharTypeName = s.CommonCharType.DisplayName, CreatorName = _cacheService.GetUserNameAsync(s.CreatorId).Result, LastModifierName = _cacheService.GetUserNameAsync(s.LastModifierId).Result - }).ToList(); + }).OrderBy(o => o.DisplayOrder).ToList(); return entListDto;