瀏覽代碼

Merge remote-tracking branch 'origin/master'

lideyin 5 年之前
父節點
當前提交
4f72768cc7
共有 1 個文件被更改,包括 32 次插入2 次删除
  1. 32 2
      src/main/java/cn/com/qmth/examcloud/support/examing/ExamingSession.java

+ 32 - 2
src/main/java/cn/com/qmth/examcloud/support/examing/ExamingSession.java

@@ -25,10 +25,15 @@ public class ExamingSession implements JsonSerializable {
 	 */
 	 */
 	private Long rootOrgId;
 	private Long rootOrgId;
 
 
+	/**
+     * 学习中心ID
+     */
+    private Long orgId;
+    
 	/**
 	/**
 	 * 考试状态
 	 * 考试状态
 	 */
 	 */
-	ExamingStatus examingStatus;
+	private ExamingStatus examingStatus;
 
 
 	/**
 	/**
 	 * 学生ID
 	 * 学生ID
@@ -64,7 +69,12 @@ public class ExamingSession implements JsonSerializable {
 	 * 创建时间
 	 * 创建时间
 	 */
 	 */
 	private Date creationTime;
 	private Date creationTime;
-
+	
+    /**
+     * 试卷类型
+     */
+    private String paperType;
+    
 	/**
 	/**
 	 * 构建key
 	 * 构建key
 	 *
 	 *
@@ -157,4 +167,24 @@ public class ExamingSession implements JsonSerializable {
 		this.creationTime = creationTime;
 		this.creationTime = creationTime;
 	}
 	}
 
 
+    
+    public String getPaperType() {
+        return paperType;
+    }
+
+    
+    public void setPaperType(String paperType) {
+        this.paperType = paperType;
+    }
+
+    
+    public Long getOrgId() {
+        return orgId;
+    }
+
+    
+    public void setOrgId(Long orgId) {
+        this.orgId = orgId;
+    }
+
 }
 }