src/main/java/com/mindskip/xzs/controller/student/QuestionController.java
@@ -38,4 +38,14 @@ return RestResponse.ok(vm); } @GetMapping("/{id}") public RestResponse getById(@PathVariable("id") Integer id) { return questionService.selectContentById(id); } @GetMapping("/answer/{id}") public RestResponse getAnswer(@PathVariable("id") Integer id) { return questionService.getAnswer(id); } }