| | |
| | | return R.data(bladeFlows); |
| | | } |
| | | |
| | | @Override |
| | | @PostMapping(GET_MY_TODO_LIST) |
| | | public List<BladeFlow> getMyToDoList(BladeFlow bladeFlow,String currentUserId) { |
| | | List<BladeFlow> myToDoList = flowBusinessService.getMyToDoList(bladeFlow,currentUserId); |
| | | return myToDoList; |
| | | } |
| | | |
| | | @Override |
| | | @PostMapping(GET_MY_DONE_LIST) |
| | | public List<BladeFlow> getMyDoneList(BladeFlow bladeFlow, String currentUserId) { |
| | | List<BladeFlow> myToDoList = flowBusinessService.getMyDoneList(bladeFlow,currentUserId); |
| | | return myToDoList; |
| | | } |
| | | |
| | | @Override |
| | | @PostMapping(GET_MY_DONE_PAGE) |
| | | public List<BladeFlow> getMyDonePage(BladeFlow bladeFlow, String currentUserId, Integer current, Integer size) { |
| | | List<BladeFlow> myToDoList = flowBusinessService.getMyDonePage(bladeFlow,currentUserId,current,size); |
| | | return myToDoList; |
| | | } |
| | | |
| | | |
| | | } |