| | |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize());// todo |
| | | return ResponseUtil.successPage(ipVolumeMissionService.missionList(baseConditionVO,keyword)); |
| | | } |
| | | //获取任务详情 |
| | | @GetMapping("/getByTaskId/{taskId}") |
| | | public ResponseVO<Object> getByTaskId(@PathVariable Integer taskId){ |
| | | return ResponseUtil.success(ipVolumeMissionService.getByTaskId(taskId)); |
| | | } |
| | | |
| | | |
| | | @GetMapping("/playTask/{taskId}") |
| | | public ResponseVO<Object> playTask(@PathVariable Integer taskId){ |
| | | return ResponseUtil.success(ipVolumeMissionService.playTask(taskId)); |
| | | } |
| | | |
| | | |
| | | } |