luohairen
2024-11-14 247cb86585a1d1894596ed18a6c93efecb992946
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);