|
@@ -11,9 +11,17 @@ public class GetExamStudentDataResp extends BaseResponse {
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
private static final long serialVersionUID = -6251828470571324450L;
|
|
private static final long serialVersionUID = -6251828470571324450L;
|
|
-
|
|
|
|
|
|
+ //下一个学生id
|
|
|
|
+ private Long nextId;
|
|
|
|
+
|
|
private List<ExamStudentDataBean> list;
|
|
private List<ExamStudentDataBean> list;
|
|
|
|
+ public Long getNextId() {
|
|
|
|
+ return nextId;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ public void setNextId(Long nextId) {
|
|
|
|
+ this.nextId = nextId;
|
|
|
|
+ }
|
|
public List<ExamStudentDataBean> getList() {
|
|
public List<ExamStudentDataBean> getList() {
|
|
return list;
|
|
return list;
|
|
}
|
|
}
|