|
@@ -35,6 +35,9 @@ public class ExamStudentDataBean implements JsonSerializable {
|
|
|
|
|
|
|
|
|
|
private Double score;
|
|
private Double score;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ private Long nextId;
|
|
|
|
|
|
|
|
|
|
private List<ExamStudentScoreDataBean> scoreDetails;
|
|
private List<ExamStudentScoreDataBean> scoreDetails;
|
|
@@ -126,5 +129,12 @@ public class ExamStudentDataBean implements JsonSerializable {
|
|
public void setScoreDetails(List<ExamStudentScoreDataBean> scoreDetails) {
|
|
public void setScoreDetails(List<ExamStudentScoreDataBean> scoreDetails) {
|
|
this.scoreDetails = scoreDetails;
|
|
this.scoreDetails = scoreDetails;
|
|
}
|
|
}
|
|
-
|
|
+
|
|
|
|
+ public Long getNextId() {
|
|
|
|
+ return nextId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setNextId(Long nextId) {
|
|
|
|
+ this.nextId = nextId;
|
|
|
|
+ }
|
|
}
|
|
}
|