Browse Source

测试部署

tags/24082201
PoffyZhang 1 year ago
parent
commit
1684c77123
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      pmapi/src/main/java/com/ningdatech/pmapi/sys/manage/NoticeManage.java

+ 1
- 0
pmapi/src/main/java/com/ningdatech/pmapi/sys/manage/NoticeManage.java View File

@@ -159,6 +159,7 @@ public class NoticeManage {
.like(StrUtil.isNotBlank(req.getTitle()), Notice::getTitle, req.getTitle())
.eq(req.getType() != null, Notice::getType, req.getType())
.orderByDesc(Notice::getToppedTime, Notice::getUpdateOn);
permissionsWrapper(wrapper,LoginUserUtil.loginUserDetail());
List<Notice> records = noticeService.list(wrapper);
return CollUtils.convert(records, w -> NoticeListItemVO
.builder()


Loading…
Cancel
Save