| | |
| | | String DONE_LIST = "/done-list"; |
| | | String GET_BLADEFLOW = "/getBladeFlow"; |
| | | |
| | | String HISTORY_FLOW_LIST = "/history-flow-list"; |
| | | |
| | | /** |
| | | * 开启流程 |
| | | * |
| | |
| | | |
| | | @PostMapping(DONE_LIST) |
| | | R<BladeFlowPage> getDoneBladeFlowList(@RequestParam("size") Integer size, @RequestParam("current") Integer current, @RequestParam("currentUserId") String currentUserId, @RequestBody BladeFlowVO bladeFlow); |
| | | |
| | | |
| | | @GetMapping(HISTORY_FLOW_LIST) |
| | | R<List<BladeFlow>> historyFlowList(@RequestParam("processInstanceId") String processInstanceId,@RequestParam("startActivityId") String startActivityId,@RequestParam("endActivityId") String endActivityId); |
| | | |
| | | } |