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