| | |
| | | String DONE_LIST = "/done-list"; |
| | | String GET_BLADEFLOW = "/getBladeFlow"; |
| | | |
| | | String HISTORY_FLOW_LIST = "/history-flow-list"; |
| | | |
| | | |
| | | |
| | | String GET_MY_TODO_LIST = API_PREFIX + "/getMyToDoList"; |
| | | String GET_MY_DONE_LIST = API_PREFIX + "/getMyDoneList"; |
| | | String GET_MY_DONE_PAGE= API_PREFIX + "/getMyDonePage"; |
| | | |
| | | |
| | | /** |
| | | * 开启流程 |
| | | * |
| | |
| | | |
| | | @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); |
| | | |
| | | |
| | | @PostMapping(GET_MY_TODO_LIST) |
| | | List<BladeFlow> getMyToDoList(@RequestBody BladeFlow bladeFlow,@RequestParam("currentUserId") String currentUserId); |
| | | |
| | | @PostMapping(GET_MY_DONE_LIST) |
| | | List<BladeFlow> getMyDoneList(@RequestBody BladeFlow bladeFlow,@RequestParam("currentUserId") String currentUserId); |
| | | |
| | | @PostMapping(GET_MY_DONE_PAGE) |
| | | List<BladeFlow> getMyDonePage(@RequestBody BladeFlow bladeFlow, @RequestParam("currentUserId")String currentUserId, @RequestParam("current")Integer current,@RequestParam("size") Integer size); |
| | | } |