|
@@ -40,7 +40,7 @@ public class EPaperVerifyController {
|
40
|
40
|
//获取学生试卷及试题作答
|
41
|
41
|
@PostMapping("/get_stuPaper")
|
42
|
42
|
public ResultVo getStudentPaper(@RequestBody EPaperStudent0608 ps) {
|
43
|
|
- N_Utils.validation(new Object[]{ps.getExamid(), "考试id", 1, ps.getEpid(), "考试科目", 1});
|
|
43
|
+ N_Utils.validation(new Object[]{ps.getExamid(), "考试id", 1, ps.getEpid(), "试卷id", 1});
|
44
|
44
|
Map map = ePaperVerifyService.getStudentPaper(ps);
|
45
|
45
|
return new ResultVo(0, "获取成功!", map);
|
46
|
46
|
}
|
|
@@ -48,7 +48,7 @@ public class EPaperVerifyController {
|
48
|
48
|
//识别跳过
|
49
|
49
|
@PostMapping("/correct_skip")
|
50
|
50
|
public ResultVo correctSkip(@RequestBody EPaperStudent0608 ps) {
|
51
|
|
- N_Utils.validation(new Object[]{ps.getEpid(), "考试试卷id", 1, ps.getStudentid(), "学生id", 1, ps.getVerified(), "是否验证", 1});
|
|
51
|
+ N_Utils.validation(new Object[]{ps.getEpid(), "试卷id", 1, ps.getStudentid(), "学生id", 1, ps.getVerified(), "是否验证", 1});
|
52
|
52
|
ePaperVerifyService.correctSkip(ps);
|
53
|
53
|
return new ResultVo(0, "识别成功!");
|
54
|
54
|
}
|