| | |
| | | return Result.OK(pageList); |
| | | } |
| | | |
| | | @ApiOperation(value = "通过传入TaskIds判断是否在同一节点") |
| | | @GetMapping(value = "/isSameNode") |
| | | public Result isSameNode(@RequestParam(name = "taskIds") String taskIds) { |
| | | return flowTaskService.isSameNode(taskIds); |
| | | } |
| | | |
| | | @ApiOperation(value = "获取待办列表", response = FlowTaskDto.class) |
| | | @GetMapping(value = "/todoList") |
| | | public Result todoList(@ApiParam(value = "当前页码", required = true) @RequestParam (name="pageNum", defaultValue="1") Integer pageNum, |
| | |
| | | FlowMyBusinessDto flowMyBusinessDto) { |
| | | return flowTaskService.finishedList(pageNo, pageSize,flowMyBusinessDto); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "获取工作流历史任务", response = FlowTaskDto.class) |
| | | @GetMapping(value = "/queryHisTaskList") |