package cn.alphabets.light.model;
import java.util.Date;
/**
* 设备
* Created by lin on 14/12/25.
*/
public class ModelDevice extends BasicModel {
private String token;
private String qrcode;
private String identifier;
private String pushToken;
private String type;
private String user;
private Date active;
private String status;
private String description;
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public String getQrcode() {
return qrcode;
}
public void setQrcode(String qrcode) {
this.qrcode = qrcode;
}
public String getIdentifier() {
return identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getPushToken() {
return pushToken;
}
public void setPushToken(String pushToken) {
this.pushToken = pushToken;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user;
}
public Date getActive() {
return active;
}
public void setActive(Date active) {
this.active = active;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}