xiatian 5 anni fa
parent
commit
6b20320e14

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

@@ -25,6 +25,11 @@ public class ExamingSession implements JsonSerializable {
 	 */
 	private Long rootOrgId;
 
+	/**
+     * 学习中心ID
+     */
+    private Long orgId;
+    
 	/**
 	 * 考试状态
 	 */
@@ -172,4 +177,14 @@ public class ExamingSession implements JsonSerializable {
         this.paperType = paperType;
     }
 
+    
+    public Long getOrgId() {
+        return orgId;
+    }
+
+    
+    public void setOrgId(Long orgId) {
+        this.orgId = orgId;
+    }
+
 }