package com.hxzkoa.json;
|
|
import java.sql.Time;
|
|
public class tb_statustag {
|
private int id;
|
private String tagid;
|
private Time TIMESTAMP;
|
private String VBAT;
|
private int LAYID;
|
private String VELO;
|
|
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 Time getTIMESTAMP() {
|
return TIMESTAMP;
|
}
|
|
public void setTIMESTAMP(Time 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;
|
}
|
|
}
|