|
@@ -42,7 +42,7 @@ public class AppNoticeController {
|
|
|
* 获取消息分页
|
|
|
*/
|
|
|
@GetMapping("page")
|
|
|
- public Result page(NoticeGroupEnum type, BasePageParam page) {
|
|
|
+ public Result<Page<Notice>> page(NoticeGroupEnum type, BasePageParam page) {
|
|
|
Page queryPage = new Page(page.getPage(), page.getSize());
|
|
|
return Result.success(
|
|
|
noticeService.page(queryPage, Wrappers.<Notice>lambdaQuery()
|