手机端-待办中心-Prehomo数据分页列表接口。

This commit is contained in:
wangzhijiang
2023-06-13 11:45:36 +08:00
parent 2ca28e0229
commit a878dcad20
@@ -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<String,Object> params) {
String cut = (String) params.get("cut");
IPage<ProjectCertificationInventoryEO> page = this.toDoCenterService.queryPreHomoPage(params);
return Result.OK(cut,page);
}
}