|
@@ -2,6 +2,8 @@ package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
public class IllegallyTypeDomain implements JsonSerializable {
|
|
|
|
|
|
private static final long serialVersionUID = 239263456816448160L;
|
|
@@ -26,6 +28,8 @@ public class IllegallyTypeDomain implements JsonSerializable {
|
|
|
*/
|
|
|
private String dataCategory;
|
|
|
|
|
|
+ private Date updateTime;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -81,4 +85,12 @@ public class IllegallyTypeDomain implements JsonSerializable {
|
|
|
public void setDataCategory(String dataCategory) {
|
|
|
this.dataCategory = dataCategory;
|
|
|
}
|
|
|
+
|
|
|
+ public Date getUpdateTime() {
|
|
|
+ return updateTime;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdateTime(Date updateTime) {
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ }
|
|
|
}
|