zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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;
    }
 
 
 
}