wangwei 5 年之前
父节点
当前提交
c3cdf633f7
共有 1 个文件被更改,包括 13 次插入26 次删除
  1. 13 26
      src/main/java/cn/com/qmth/examcloud/support/examing/ExamingSession.java

+ 13 - 26
src/main/java/cn/com/qmth/examcloud/support/examing/ExamingSession.java

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