Merge pull request #13430 from ulleo/dev-v2

feat(X-Pack): [数据填报]增加统计用户待填报任务条数接口
This commit is contained in:
dataeaseShu 2024-11-20 11:09:59 +08:00 committed by GitHub
commit 066d01d7b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,6 +110,9 @@ public interface DataFillingApi {
@PostMapping("/user-task/page/{goPage}/{pageSize}")
IPage<DfUserTaskVo> listUserTask(@PathVariable("goPage") int goPage, @PathVariable("pageSize") int pageSize, @RequestBody DfUserTaskRequest request) throws Exception;
@PostMapping("/user-task/todo/count")
long countUserTodoList() throws Exception;
@GetMapping("/user-task/list/{id}")
DfUserTaskData listUserTaskData(@PathVariable("id") Long id) throws Exception;