|
@@ -105,6 +105,11 @@ public class ExamingSession implements JsonSerializable {
|
|
*/
|
|
*/
|
|
private Long examDuration;
|
|
private Long examDuration;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 试卷题目数量(校验提交答案的order)
|
|
|
|
+ */
|
|
|
|
+ private Integer questionCount;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 构建key
|
|
* 构建key
|
|
*
|
|
*
|
|
@@ -277,4 +282,15 @@ public class ExamingSession implements JsonSerializable {
|
|
this.examDuration = examDuration;
|
|
this.examDuration = examDuration;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
|
|
+ public Integer getQuestionCount() {
|
|
|
|
+ return questionCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public void setQuestionCount(Integer questionCount) {
|
|
|
|
+ this.questionCount = questionCount;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|