From 1642842f0b4c151975b6e3464bc547b19ef521ca Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Tue, 21 Apr 2026 16:37:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[=E4=B8=AA=E4=BA=BA=E4=B8=AD=E5=BF=83]?= =?UTF-8?q?=20[=E5=B7=A5=E4=BD=9C=E5=8F=B0]=20=E5=B7=B2=E8=AF=BB=E6=B6=88?= =?UTF-8?q?=E6=81=AF=E6=8E=92=E5=9C=A8=E5=90=8E=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/hxhq/business/service/impl/NoticeServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/NoticeServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/NoticeServiceImpl.java index ce952e7..47f5f0d 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/NoticeServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/NoticeServiceImpl.java @@ -48,6 +48,7 @@ public class NoticeServiceImpl extends ServiceImpl impleme { QueryWrapper queryWrapper = Wrappers.query(); queryWrapper.eq("user_id", SecurityUtils.getUserId()); + queryWrapper.orderByAsc("status"); queryWrapper.orderByDesc("id"); return this.list(queryWrapper); }