fix(X-Pack): 数据填报表单的任务管理中出现了其他表单的任务

This commit is contained in:
ulleo 2024-08-21 18:36:30 +08:00
parent 86226c3867
commit 2311f180b8
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit 7ebfc0b55262ee4f3bbd04defdb4e11128dc51d8
Subproject commit 8bd2d1244e9e2a41e7e37ac2840220af70167de5

View File

@ -80,8 +80,8 @@ public interface DataFillingApi {
@PostMapping("/task/logMsg")
String logMsg(@RequestBody ReportInstanceMsgRequest request);
@PostMapping("/task/page/{goPage}/{pageSize}")
IPage<ReportGridVO> taskPager(@PathVariable("goPage") int goPage, @PathVariable("pageSize") int pageSize, @RequestBody DfTaskInfoRequest request);
@PostMapping("/form/{formId}/task/page/{goPage}/{pageSize}")
IPage<ReportGridVO> taskPager(@PathVariable("formId") Long formId, @PathVariable("goPage") int goPage, @PathVariable("pageSize") int pageSize, @RequestBody DfTaskInfoRequest request);
@PostMapping("/sub-task/page/{goPage}/{pageSize}")
IPage<DfSubTaskVo> subTaskPager(@PathVariable("goPage") int goPage, @PathVariable("pageSize") int pageSize, @RequestBody DfSubTaskInfoRequest request);