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
package tbDataModel;
 
public class tbstatusanchor implements java.io.Serializable {//»ùվ״̬Àà
 
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    
    private int id;//»ùÕ¾ÐòºÅ
    private String anchorid;//»ùÕ¾ID
    private String TIMESTAMP;//ʱ¼ä´Á
    private String IPV4; //»ùÕ¾µØÖ·
    
    public tbstatusanchor() {// È±Ê¡¹¹Ô캯Êý
    }
 
    public tbstatusanchor(int id) {// ×îС¹¹Ô캯Êý(Ö÷¼ü)
        this.id = id;
    }
 
    public tbstatusanchor( int id, String anchorid,String TIMESTAMP,String IPV4) {// ÍêÕû¹¹Ô캯Êý
        this.id = id;
        this.anchorid = anchorid;
        this.TIMESTAMP=TIMESTAMP;
        this.IPV4=IPV4;
    }
    // Ê¹ÓÃGetters and Setters·½·¨»ùվ״̬ÀàÀàµÄ˽ÓÐÊôÐÔ·â×°ÆðÀ´
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getAnchorid() {
        return anchorid;
    }
 
    public void setAnchorid(String anchorid) {
        this.anchorid = anchorid;
    }
 
    public String getTIMESTAMP() {
        return TIMESTAMP;
    }
 
    public void setTIMESTAMP(String tIMESTAMP) {
        TIMESTAMP = tIMESTAMP;
    }
 
    public String getIPV4() {
        return IPV4;
    }
 
    public void setIPV4(String iPV4) {
        IPV4 = iPV4;
    }
 
    public static long getSerialversionuid() {
        return serialVersionUID;
    }
    
}