feat: 通知公告临时提交

通知公告临时提交
This commit is contained in:
胡少翔
2024-09-12 18:08:02 +08:00
parent fa77b5cb8c
commit 9c765bda24
11 changed files with 110 additions and 5 deletions

View File

@@ -120,4 +120,11 @@ public class NoticeController {
noticeStatusService.readAll();
return Result.success();
}
@Operation(summary = "获取我的通知公告")
@GetMapping("/my/page")
public PageResult<NoticeVO> getMyNoticePage(NoticeQuery queryParams) {
IPage<NoticeVO> result = noticeService.getMyNoticePage(queryParams);
return PageResult.success(result);
}
}