zhanghua
2024-10-28 2fd0e1f211744ca3fb135066d931c3e6ec8d9c94
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);