xiatian vor 2 Jahren
Ursprung
Commit
3e5ff22267

+ 10 - 0
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/MarkWorkBean.java

@@ -4,6 +4,7 @@ import java.util.Date;
 import java.util.List;
 import java.util.List;
 
 
 import cn.com.qmth.examcloud.api.commons.enums.CallType;
 import cn.com.qmth.examcloud.api.commons.enums.CallType;
+import cn.com.qmth.examcloud.api.commons.enums.ExamType;
 import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 
 
 /**
 /**
@@ -23,6 +24,7 @@ public class MarkWorkBean implements JsonSerializable {
 	private Date createdOn;
 	private Date createdOn;
 
 
 	private List<Long> examIds;
 	private List<Long> examIds;
+	private ExamType examType;
 	private CallType callType;
 	private CallType callType;
 	private String remark;
 	private String remark;
 
 
@@ -198,4 +200,12 @@ public class MarkWorkBean implements JsonSerializable {
 		this.callType = callType;
 		this.callType = callType;
 	}
 	}
 
 
+	public ExamType getExamType() {
+		return examType;
+	}
+
+	public void setExamType(ExamType examType) {
+		this.examType = examType;
+	}
+
 }
 }