|
@@ -61,10 +61,15 @@ public class PracticeExamRestController {
|
|
|
return oeService.startPracticeExamRecord(key, token, examStudentId);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "获取结束练习的试卷大题结构信息接口")
|
|
|
+ @RequestMapping(value = "/exam/admin/record/paper/struct/list", method = {RequestMethod.POST})
|
|
|
+ public Result getExamAdminRecordPaperStructList(@RequestHeader(name = PARAM_APP_KEY) String key, @RequestHeader(name = PARAM_APP_TOKEN) String token, @RequestParam String examRecordId,@RequestParam(required = false) String fromCache) throws Exception {
|
|
|
+ return oeService.getAdminExamPaperStructList(key, token, examRecordId,fromCache);
|
|
|
+ }
|
|
|
@ApiOperation(value = "获取当前练习的试卷大题结构信息接口")
|
|
|
- @RequestMapping(value = "/exam/record/paper/struct/list", method = {RequestMethod.POST})
|
|
|
- public Result getExamRecordPaperStructList(@RequestHeader(name = PARAM_APP_KEY) String key, @RequestHeader(name = PARAM_APP_TOKEN) String token, @RequestParam String examRecordId,@RequestParam(required = false) String fromCache) throws Exception {
|
|
|
- return oeService.getExamRecordPaperStructList(key, token, examRecordId,fromCache);
|
|
|
+ @RequestMapping(value = "/exam/student/record/paper/struct/list", method = {RequestMethod.POST})
|
|
|
+ public Result getExamStudentRecordPaperStructList(@RequestHeader(name = PARAM_APP_KEY) String key, @RequestHeader(name = PARAM_APP_TOKEN) String token, @RequestParam String examRecordId) throws Exception {
|
|
|
+ return oeService.getStudentExamPaperStructList(key, token, examRecordId);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "获取当前练习的考试基本信息接口")
|