package tbDataModel;
|
|
public class tbstatustag implements java.io.Serializable {//±êǩ״̬Áбí
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private int id;//
|
private String tagid;//
|
private String TIMESTAMP;//
|
private String VBAT;//
|
private int LAYID;//
|
private String VELO; //
|
|
public tbstatustag() {// ȱʡ¹¹Ô캯Êý
|
}
|
|
public tbstatustag(int id) {// ×îС¹¹Ô캯Êý(Ö÷¼ü)
|
this.id = id;
|
}
|
|
public tbstatustag( int id, String tagid,String TIMESTAMP,String VBAT,int LAYID,String VELO) {// ÍêÕû¹¹Ô캯Êý
|
this.id = id;
|
this.tagid = tagid;
|
this.TIMESTAMP= TIMESTAMP;
|
this.VBAT = VBAT;
|
this.LAYID =LAYID;
|
this.VELO = VELO;
|
|
}
|
// ʹÓÃGetters and Setters·½·¨½«±êǩ״̬ÁбíÀàµÄ˽ÓÐÊôÐÔ·â×°ÆðÀ´
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getTagid() {
|
return tagid;
|
}
|
|
public void setTagid(String tagid) {
|
this.tagid = tagid;
|
}
|
|
public String getTIMESTAMP() {
|
return TIMESTAMP;
|
}
|
|
public void setTIMESTAMP(String tIMESTAMP) {
|
TIMESTAMP = tIMESTAMP;
|
}
|
|
public String getVBAT() {
|
return VBAT;
|
}
|
|
public void setVBAT(String vBAT) {
|
VBAT = vBAT;
|
}
|
|
public int getLAYID() {
|
return LAYID;
|
}
|
|
public void setLAYID(int lAYID) {
|
LAYID = lAYID;
|
}
|
|
public String getVELO() {
|
return VELO;
|
}
|
|
public void setVELO(String vELO) {
|
VELO = vELO;
|
}
|
|
public static long getSerialversionuid() {
|
return serialVersionUID;
|
}
|
|
}
|