|
@@ -19,7 +19,7 @@ public class WifiGroup {
|
|
|
private Long wifiId;//热点ID
|
|
|
private Long groupId;//分组ID
|
|
|
private Integer status;//状态
|
|
|
- private Date supdated;//更新时间
|
|
|
+ private Long supdated;//更新时间
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
@@ -44,10 +44,10 @@ public class WifiGroup {
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
- public Date getSupdated() {
|
|
|
+ public Long getSupdated() {
|
|
|
return supdated;
|
|
|
}
|
|
|
- public void setSupdated(Date supdated) {
|
|
|
+ public void setSupdated(Long supdated) {
|
|
|
this.supdated = supdated;
|
|
|
}
|
|
|
@Override
|