src/main/java/com/ycl/jxkg/controller/admin/ExamPaperController.java
@@ -70,11 +70,13 @@ return Result.ok(); } @RequestMapping(value = "/selectQuestion/{id}", method = RequestMethod.POST) public Result<ExamPaperQuestion> selectQuestion(@PathVariable Integer id) { ExamPaperQuestion vo = examPaperQuestionService.selectById(id); return Result.ok(vo); } @RequestMapping(value = "/select/{id}", method = RequestMethod.POST) public Result<ExamPaperEditRequestVO> select(@PathVariable Integer id) { ExamPaperEditRequestVO vm = examPaperService.examPaperToVM(id);