xiatian 5 gadi atpakaļ
vecāks
revīzija
106c1d3803

+ 16 - 0
src/main/java/cn/com/qmth/examcloud/support/examing/ExamingSession.java

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