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
99
100
101
102
103
104
105
106
107
108
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;
    }
 
}