|
@@ -55,5 +55,11 @@ public class ExamController extends ControllerSupport {
|
|
|
public Result getEndExamInfo(@RequestHeader(name = PARAM_APP_KEY) String key, @RequestHeader(name = PARAM_APP_TOKEN) String token,@PathVariable Long examRecordDataId) throws Exception{
|
|
|
return oeService.getEndExamInfo(key, token,examRecordDataId);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "根据examStudentId获取客观分信息")
|
|
|
+ @GetMapping("/queryObjectiveScoreList/{examStudentId}")
|
|
|
+ public Result queryObjectiveScoreList(@RequestHeader(name = PARAM_APP_KEY) String key, @RequestHeader(name = PARAM_APP_TOKEN) String token,@PathVariable Long examStudentId) throws Exception{
|
|
|
+ return oeService.queryObjectiveScoreList(key, token,examStudentId);
|
|
|
+ }
|
|
|
|
|
|
}
|