订阅功能
This commit is contained in:
parent
148776b458
commit
016c9c0204
@ -212,4 +212,23 @@ public class BusiNoticeController extends BaseController
|
||||
IPage<BusiNoticeVo> list = busiNoticeService.appFootprintList(query,page);
|
||||
return success(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 小程序端查询订阅通告列表
|
||||
* @author zcy
|
||||
* @date 15:39 2025/3/29
|
||||
* @param query 查询条件
|
||||
* @param pageNum 1
|
||||
* @param pageSize 10
|
||||
* @return com.ruoyi.common.core.domain.AjaxResult
|
||||
**/
|
||||
@GetMapping("/subscribeList")
|
||||
public AjaxResult subscribeList(AppNoticeQuery query,
|
||||
@RequestParam(name = "pageNum", defaultValue = "1") Integer pageNum,
|
||||
@RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize)
|
||||
{
|
||||
Page<BusiNotice> page = new Page<>(pageNum, pageSize);
|
||||
IPage<BusiNoticeVo> list = busiNoticeService.appFootprintList(query,page);
|
||||
return success(list);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user