admin
2018-12-19 b91b38942de4a865f105c4ca1e7d5ffce1b60b66
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
package org.yeshi.utils.entity;
 
public class ProxyIP {
    private String ip;
    private int port;
 
    public ProxyIP(String ip, int port) {
        this.ip = ip;
        this.port = port;
    }
 
    public ProxyIP() {
    }
 
    public String getIp() {
        return ip;
    }
 
    public void setIp(String ip) {
        this.ip = ip;
    }
 
    public int getPort() {
        return port;
    }
 
    public void setPort(int port) {
        this.port = port;
    }
 
}