admin
2021-02-06 d1f26741bddf6f512d62c0100d42c52be8d37e76
utils/src/main/java/org/yeshi/utils/entity/ProxyIP.java
@@ -1,31 +1,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;
   }
}
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;
   }
}