|
@@ -1,5 +1,7 @@
|
|
package cn.com.qmth.examcloud.examwork.api.bean;
|
|
package cn.com.qmth.examcloud.examwork.api.bean;
|
|
|
|
|
|
|
|
+import java.util.Date;
|
|
|
|
+
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
public class ExamStudentBean implements JsonSerializable {
|
|
public class ExamStudentBean implements JsonSerializable {
|
|
@@ -107,6 +109,16 @@ public class ExamStudentBean implements JsonSerializable {
|
|
*/
|
|
*/
|
|
private String infoCollector;
|
|
private String infoCollector;
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 特殊考试批次开始时间
|
|
|
|
+ */
|
|
|
|
+ private Date specialBeginTime;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 特殊考试批次结束时间
|
|
|
|
+ */
|
|
|
|
+ private Date specialEndTime;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 扩展属性1
|
|
* 扩展属性1
|
|
*/
|
|
*/
|
|
@@ -300,6 +312,22 @@ public class ExamStudentBean implements JsonSerializable {
|
|
this.infoCollector = infoCollector;
|
|
this.infoCollector = infoCollector;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Date getSpecialBeginTime() {
|
|
|
|
+ return specialBeginTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSpecialBeginTime(Date specialBeginTime) {
|
|
|
|
+ this.specialBeginTime = specialBeginTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Date getSpecialEndTime() {
|
|
|
|
+ return specialEndTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSpecialEndTime(Date specialEndTime) {
|
|
|
|
+ this.specialEndTime = specialEndTime;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getExt1() {
|
|
public String getExt1() {
|
|
return ext1;
|
|
return ext1;
|
|
}
|
|
}
|