|
@@ -1,5 +1,7 @@
|
|
|
package cn.com.qmth.examcloud.support.examing;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
/**
|
|
@@ -9,7 +11,7 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
* @date 2019年12月27日
|
|
|
* @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
*/
|
|
|
-public class ExamActivityTime implements JsonSerializable {
|
|
|
+public class ExamingActivityTime implements JsonSerializable {
|
|
|
|
|
|
private static final long serialVersionUID = 380814978042469776L;
|
|
|
|
|
@@ -21,7 +23,7 @@ public class ExamActivityTime implements JsonSerializable {
|
|
|
/**
|
|
|
* 学生最后活动时间
|
|
|
*/
|
|
|
- private Long activeTime;
|
|
|
+ private Date activeTime;
|
|
|
|
|
|
public Long getExamRecordDataId() {
|
|
|
return examRecordDataId;
|
|
@@ -31,11 +33,11 @@ public class ExamActivityTime implements JsonSerializable {
|
|
|
this.examRecordDataId = examRecordDataId;
|
|
|
}
|
|
|
|
|
|
- public Long getActiveTime() {
|
|
|
+ public Date getActiveTime() {
|
|
|
return activeTime;
|
|
|
}
|
|
|
|
|
|
- public void setActiveTime(Long activeTime) {
|
|
|
+ public void setActiveTime(Date activeTime) {
|
|
|
this.activeTime = activeTime;
|
|
|
}
|
|
|
|