|
@@ -25,6 +25,11 @@ public class ExamingSession implements JsonSerializable {
|
|
|
*/
|
|
|
private Long rootOrgId;
|
|
|
|
|
|
+ /**
|
|
|
+ * 考试状态
|
|
|
+ */
|
|
|
+ ExamingStatus examingStatus;
|
|
|
+
|
|
|
/**
|
|
|
* 学生ID
|
|
|
*/
|
|
@@ -55,16 +60,6 @@ public class ExamingSession implements JsonSerializable {
|
|
|
*/
|
|
|
private Long activeTime;
|
|
|
|
|
|
- /**
|
|
|
- * 是否交卷
|
|
|
- */
|
|
|
- private Boolean handed;
|
|
|
-
|
|
|
- /**
|
|
|
- * 是否终结
|
|
|
- */
|
|
|
- private Boolean terminated;
|
|
|
-
|
|
|
/**
|
|
|
* 创建时间
|
|
|
*/
|
|
@@ -98,6 +93,14 @@ public class ExamingSession implements JsonSerializable {
|
|
|
this.rootOrgId = rootOrgId;
|
|
|
}
|
|
|
|
|
|
+ public ExamingStatus getExamingStatus() {
|
|
|
+ return examingStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamingStatus(ExamingStatus examingStatus) {
|
|
|
+ this.examingStatus = examingStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getStudentId() {
|
|
|
return studentId;
|
|
|
}
|
|
@@ -146,22 +149,6 @@ public class ExamingSession implements JsonSerializable {
|
|
|
this.activeTime = activeTime;
|
|
|
}
|
|
|
|
|
|
- public Boolean getHanded() {
|
|
|
- return handed;
|
|
|
- }
|
|
|
-
|
|
|
- public void setHanded(Boolean handed) {
|
|
|
- this.handed = handed;
|
|
|
- }
|
|
|
-
|
|
|
- public Boolean getTerminated() {
|
|
|
- return terminated;
|
|
|
- }
|
|
|
-
|
|
|
- public void setTerminated(Boolean terminated) {
|
|
|
- this.terminated = terminated;
|
|
|
- }
|
|
|
-
|
|
|
public Date getCreationTime() {
|
|
|
return creationTime;
|
|
|
}
|