admin
2021-10-13 052e1d5c47c4e536fde79074d53b0481c7d4f9b6
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;
    }
 
}