| | |
| | | return R.data(detail); |
| | | } |
| | | |
| | | /** |
| | | * 查询试卷包含的题目 |
| | | */ |
| | | @GetMapping("/getEexPaperChoices") |
| | | public R<IPage<ExamSubjectChoicesVO>> getEexPaperChoices(ExamSubjectChoicesVO examSubjectChoices, Query query) { |
| | | IPage<ExamSubjectChoicesVO> pages = examSubjectChoicesService.getEexPaperChoices(Condition.getPage(query), examSubjectChoices); |
| | | return R.data(pages); |
| | | } |
| | | |
| | | /** |
| | | * 修改单项题目分值 |
| | | */ |
| | | @PostMapping("/updateChoicesValue") |
| | | public R updateChoicesValue(String id,String value) { |
| | | return R.status(examSubjectChoicesService.updateChoicesValue(id,value)); |
| | | } |
| | | |
| | | } |