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
package tbDataModel;
/**ͨ¹ýTCP¶Ë¿ÚÊÕµ½µÄԭʼÊý¾Ý*/
public class Tcp_in_data {
    String ip;//Êý¾ÝÉÏÀ´µÄipµØÖ·
    String timestamp;//Êý¾ÝÉÏÀ´µÄʱ¼ä´Á
    String hex;//ÊÕµ½µÄԭʼÊý¾Ý
    int inttimestamp;
    public String getIp() {
        return ip;
    }
    public String getTimestamp() {
        return timestamp;
    }
    public String getHex() {
        return hex;
    }
    public void setIp(String ip) {
        this.ip = ip;
    }
    public void setTimestamp(String timestamp) {
        this.timestamp = timestamp;
    }
    public void setHex(String hex) {
        this.hex = hex;
    }
    public int getInttimestamp() {
        return inttimestamp;
    }
    public void setInttimestamp(int inttimestamp) {
        this.inttimestamp = inttimestamp;
    }
 
}