package tbDataModel;
|
|
/**ʵʱλÖÃÊý¾ÝÄ£ÐÍÀà*/
|
|
public class ReaLocation implements java.io.Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
int id;//»ùÕ¾ÐòºÅ
|
String tagid;//±êÇ©id
|
String x;//±êÇ©x×ø±ê
|
String y;//±êÇ©Y×ø±ê
|
String z;//±êÇ©Z×ø±ê
|
String layer;//±êÇ©ËùÔÚ²ã
|
String time;//±êǩʱ¼ä´Áʱ¼ä
|
|
|
public ReaLocation() {// ȱʡ¹¹Ô캯Êý
|
}
|
|
public ReaLocation(int id) {// ×îС¹¹Ô캯Êý(Ö÷¼ü)
|
this.id = id;
|
}
|
|
/**ÍêÕûµÄλÖÃÊý¾Ý¹¹Ôì·½·¨*/
|
public ReaLocation(int id,String tagid,String x,String y,String z,String layer, String time) {// ÍêÕû¹¹Ô캯Êý
|
this.id = id;
|
this.tagid=tagid;
|
this.x=x;
|
this.y=y;
|
this.z=z;
|
this.layer=layer;
|
this.time=time;
|
|
|
}
|
|
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 getX() {
|
return x;
|
}
|
|
public void setX(String x) {
|
this.x = x;
|
}
|
|
public String getY() {
|
return y;
|
}
|
|
public void setY(String y) {
|
this.y = y;
|
}
|
|
public String getZ() {
|
return z;
|
}
|
|
public void setZ(String z) {
|
this.z = z;
|
}
|
|
public String getLayer() {
|
return layer;
|
}
|
|
public void setLayer(String layer) {
|
this.layer = layer;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
|
|
}
|