fuliqi
2024-07-16 38f9471ecf47b7c15b352113bc0f5a2ec1e64e7b
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);