|
@@ -35,6 +35,9 @@ public class ExamStudentDataBean implements JsonSerializable {
|
|
|
|
|
|
//试卷得分
|
|
|
private Double score;
|
|
|
+
|
|
|
+ //下一个学生id
|
|
|
+ private Long nextId;
|
|
|
|
|
|
//小题得分详情
|
|
|
private List<ExamStudentScoreDataBean> scoreDetails;
|
|
@@ -126,5 +129,12 @@ public class ExamStudentDataBean implements JsonSerializable {
|
|
|
public void setScoreDetails(List<ExamStudentScoreDataBean> scoreDetails) {
|
|
|
this.scoreDetails = scoreDetails;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
+ public Long getNextId() {
|
|
|
+ return nextId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNextId(Long nextId) {
|
|
|
+ this.nextId = nextId;
|
|
|
+ }
|
|
|
}
|