|
|
|
@ -71,6 +71,15 @@ public class UserBookController extends BaseController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("错题训练")
|
|
|
|
|
@GetMapping("/toTrain/{examId}/{quId}")
|
|
|
|
|
public String toTrain(@PathVariable("examId") String examId,@PathVariable("quId") String quId, ModelMap mmap) {
|
|
|
|
|
mmap.put("examId", examId);
|
|
|
|
|
mmap.put("quId", quId);
|
|
|
|
|
return prefix + "/toTrain";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("查找列表")
|
|
|
|
|
@PostMapping("/next")
|
|
|
|
|
@ResponseBody
|
|
|
|
|