考试相关
This commit is contained in:
@@ -166,13 +166,20 @@ public class ClassExamController {
|
||||
return classExamService.generateExamPaper(params);
|
||||
}
|
||||
|
||||
//提交考卷
|
||||
//提交试卷
|
||||
@RequestMapping("/submitExamPaper")
|
||||
public R submitExamPaper(@RequestBody Map<String,Object> params){
|
||||
Object examPaper = classExamService.submitExamPaper(params);
|
||||
return R.ok().put("examPaper",examPaper);
|
||||
}
|
||||
|
||||
//试卷详情
|
||||
@RequestMapping("/getExamPaperInfo")
|
||||
public R getExamPaperInfo(@RequestBody Map<String,Object> params){
|
||||
Object examPaper = classExamService.getExamPaperInfo(params);
|
||||
return R.ok().put("examPaper",examPaper);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user