|
@@ -1,7 +1,5 @@
|
|
package cn.com.qmth.examcloud.support.examing;
|
|
package cn.com.qmth.examcloud.support.examing;
|
|
|
|
|
|
-import java.util.Date;
|
|
|
|
-
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -23,7 +21,7 @@ public class ExamingActivityTime implements JsonSerializable {
|
|
/**
|
|
/**
|
|
* 学生最后活动时间
|
|
* 学生最后活动时间
|
|
*/
|
|
*/
|
|
- private Date activeTime;
|
|
|
|
|
|
+ private Long activeTime;
|
|
|
|
|
|
public Long getExamRecordDataId() {
|
|
public Long getExamRecordDataId() {
|
|
return examRecordDataId;
|
|
return examRecordDataId;
|
|
@@ -33,11 +31,11 @@ public class ExamingActivityTime implements JsonSerializable {
|
|
this.examRecordDataId = examRecordDataId;
|
|
this.examRecordDataId = examRecordDataId;
|
|
}
|
|
}
|
|
|
|
|
|
- public Date getActiveTime() {
|
|
|
|
|
|
+ public Long getActiveTime() {
|
|
return activeTime;
|
|
return activeTime;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setActiveTime(Date activeTime) {
|
|
|
|
|
|
+ public void setActiveTime(Long activeTime) {
|
|
this.activeTime = activeTime;
|
|
this.activeTime = activeTime;
|
|
}
|
|
}
|
|
|
|
|