From a878dcad208c25bb816e0f782b81c244c52f9bd8 Mon Sep 17 00:00:00 2001 From: wangzhijiang <1358525938@qq.com> Date: Tue, 13 Jun 2023 11:45:36 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=8B=E6=9C=BA=E7=AB=AF-=E5=BE=85=E5=8A=9E?= =?UTF-8?q?=E4=B8=AD=E5=BF=83-Prehomo=E6=95=B0=E6=8D=AE=E5=88=86=E9=A1=B5?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=8E=A5=E5=8F=A3=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/phone/controller/ToDoCenterController.java | 9 +++++++++ 1 file changed, 9 insertions(+) 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); + } }