diff --git a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/phone/controller/ToDoCenterController.java b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/phone/controller/ToDoCenterController.java index 20060ff6b..55b7b84bb 100644 --- a/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/phone/controller/ToDoCenterController.java +++ b/jero-boot/jero-boot-modules/src/main/java/com/jero/modules/phone/controller/ToDoCenterController.java @@ -30,4 +30,13 @@ public class ToDoCenterController { IPage page = this.toDoCenterService.queryTodoTaskPage(params); return Result.OK(page); } + + @AutoLog(value = "手机端-待办中心-查询待办任务-Prehomo数据分页列表") + @ApiOperation(value = "手机端-待办中心-查询待办任务-Prehomo数据分页列表", notes = "手机端-待办中心-查询待办任务-Prehomo数据分页列表") + @GetMapping(value = "/queryPreHomoPage") + public Result queryPreHomoPage(@RequestParam Map params) { + String cut = (String) params.get("cut"); + IPage page = this.toDoCenterService.queryPreHomoPage(params); + return Result.OK(cut,page); + } }