| | |
| | | return selfPracticeService.remove(ids); |
| | | } |
| | | |
| | | /** |
| | | * 开始练习 |
| | | * |
| | | * @param id 练习id |
| | | * @return |
| | | */ |
| | | @PostMapping("/start/{id}") |
| | | public RestResponse startPractice(@PathVariable("id") Integer id) { |
| | | return selfPracticeService.startPractice(id); |
| | | } |
| | | |
| | | /** |
| | | * 开始看题 |
| | | * |
| | | * @param id 练习id |
| | | * @return |
| | | */ |
| | | @PostMapping("/start/look/{id}") |
| | | public RestResponse startLook(@PathVariable("id") Integer id) { |
| | | return selfPracticeService.startLook(id); |
| | | } |
| | | |
| | | /** |
| | | * 随机一道题 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @GetMapping("/random/{id}") |
| | | public RestResponse randomOneQuestion(@PathVariable("id") Integer id) { |
| | | return selfPracticeService.randomOneQuestion(id); |
| | | } |
| | | |
| | | } |