admin
2022-03-28 2f5935ed11672046c37f733d855214f6147b4b58
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;
   }
}