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); }