|
@@ -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;
|
|
|
+ }
|
|
|
+
|
|
|
}
|