package tbDataModel;
|
|
public class tbsoswarning implements java.io.Serializable {//SOS¸æ¾¯±í
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private int id;//ÐòºÅ
|
private String tagid; // ±êÇ©ID
|
private String SOS;//¸æ¾¯ÐÅÏ¢
|
private String TIMESTAMP;//ʱ¼ä´Á
|
private int SEQ;//°üÐò
|
private int posx;//X×ø±ê
|
private int posy;//Y×ø±ê
|
private int posz;//Z×ø±ê
|
|
public tbsoswarning() {// ȱʡ¹¹Ô캯Êý
|
}
|
|
public tbsoswarning(int id) {// ×îС¹¹Ô캯Êý(Ö÷¼ü)
|
this.id = id;
|
}
|
|
public tbsoswarning( int id, String tagid, String SOS, String TIMESTAMP,int SEQ,int posx,
|
int posy,int posz) {// ÍêÕû¹¹Ô캯Êý
|
this.id = id;
|
this.tagid = tagid;
|
this.SOS= SOS;
|
this.TIMESTAMP= TIMESTAMP;
|
this.SEQ = SEQ;
|
this.posx = posx;
|
this.posy = posy;
|
this.posz = posz;
|
|
}
|
// ʹÓÃ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 getSOS() {
|
return SOS;
|
}
|
|
public void setSOS(String sOS) {
|
SOS = sOS;
|
}
|
|
public String getTIMESTAMP() {
|
return TIMESTAMP;
|
}
|
|
public void setTIMESTAMP(String tIMESTAMP) {
|
TIMESTAMP = tIMESTAMP;
|
}
|
|
public int getSEQ() {
|
return SEQ;
|
}
|
|
public void setSEQ(int sEQ) {
|
SEQ = sEQ;
|
}
|
|
public int getPosx() {
|
return posx;
|
}
|
|
public void setPosx(int posx) {
|
this.posx = posx;
|
}
|
|
public int getPosy() {
|
return posy;
|
}
|
|
public void setPosy(int posy) {
|
this.posy = posy;
|
}
|
|
public int getPosz() {
|
return posz;
|
}
|
|
public void setPosz(int posz) {
|
this.posz = posz;
|
}
|
|
public static long getSerialversionuid() {
|
return serialVersionUID;
|
}
|
|
}
|