| | |
| | | return flowTaskService.complete(flowTaskVo); |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "驳回任务") |
| | | @Log(title = "驳回任务", businessType = BusinessType.UPDATE) |
| | | @PostMapping(value = "/reject") |
| | |
| | | } |
| | | |
| | | /** |
| | | * 流程节点表单 |
| | | * 流程节点表单-当前任务及前置任务 |
| | | * |
| | | * @param taskId 流程任务编号 |
| | | * @return |
| | |
| | | return flowTaskService.flowTaskForm(taskId); |
| | | } |
| | | |
| | | /** |
| | | * 流程节点表单-当前任务 |
| | | * |
| | | * @param taskId 流程任务编号 |
| | | * @return |
| | | */ |
| | | @GetMapping("/current/flowTaskForm") |
| | | public AjaxResult currentFlowTaskForm(@RequestParam(value = "taskId", required = false) String taskId) { |
| | | return flowTaskService.currentFlowTaskForm(taskId); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 流程节点信息 |