| | |
| | | */ |
| | | package cn.gistack.flow.core.feign; |
| | | |
| | | import cn.gistack.flow.core.vo.BladeFlowVO; |
| | | import cn.gistack.sm.patrol.vo.BladeFlowPage; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.core.launch.constant.AppConstant; |
| | | import org.springblade.core.tool.api.R; |
| | |
| | | String TASK_VARIABLE = API_PREFIX + "/task-variable"; |
| | | String TASK_VARIABLES = API_PREFIX + "/task-variables"; |
| | | String TODO_LIST = "/todo-list"; |
| | | String DONE_LIST = "/done-list"; |
| | | String GET_BLADEFLOW = "/getBladeFlow"; |
| | | |
| | | /** |
| | |
| | | * @return R |
| | | */ |
| | | @PostMapping(TODO_LIST) |
| | | R<List<BladeFlow>> getTodoBladeFlowList(@RequestParam("size") Integer size,@RequestParam("current") Integer current,@RequestParam("currentUserId") String currentUserId,@RequestBody BladeFlow bladeFlow); |
| | | R<BladeFlowPage> getTodoBladeFlowList(@RequestParam("size") Integer size,@RequestParam("current") Integer current,@RequestParam("currentUserId") String currentUserId,@RequestBody BladeFlow bladeFlow); |
| | | |
| | | @PostMapping(DONE_LIST) |
| | | R<BladeFlowPage> getDoneBladeFlowList(@RequestParam("size") Integer size, @RequestParam("current") Integer current, @RequestParam("currentUserId") String currentUserId, @RequestBody BladeFlowVO bladeFlow); |
| | | } |