|
@@ -49,7 +49,7 @@ public class EPaperStudentQuestionHistoryController {
|
49
|
49
|
public ResultVo listHistorys(@RequestBody EPaperStudentQuestionHistory psh) {
|
50
|
50
|
Integer page = psh.getPage();
|
51
|
51
|
Integer pageSize = psh.getPageSize();
|
52
|
|
- N_Utils.validation(new Object[]{psh.getExamid(), "考试id", 1});
|
|
52
|
+ N_Utils.validation(new Object[]{psh.getExamid(), "考试id", 1,page,"当前页",1,pageSize,"每页条数",1});
|
53
|
53
|
PageHelper.startPage(page, pageSize);
|
54
|
54
|
List<Map> rtnlst = ePaperStudentQuestionHistoryService.listExamStuQuestionHistory(psh.getExamid(),psh.getSubjectid());
|
55
|
55
|
PageResult pageResult = PageUtil.getPageResult(new PageInfo<>(rtnlst));
|