Browse Source

添加字段

xiatian 5 years ago
parent
commit
c9f58054db

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

@@ -64,7 +64,12 @@ public class ExamingSession implements JsonSerializable {
 	 * 创建时间
 	 */
 	private Date creationTime;
-
+	
+    /**
+     * 试卷类型
+     */
+    private String paperType;
+    
 	/**
 	 * 构建key
 	 *
@@ -157,4 +162,14 @@ public class ExamingSession implements JsonSerializable {
 		this.creationTime = creationTime;
 	}
 
+    
+    public String getPaperType() {
+        return paperType;
+    }
+
+    
+    public void setPaperType(String paperType) {
+        this.paperType = paperType;
+    }
+
 }