Commit ac24883a authored by xuxin's avatar xuxin

Merge remote-tracking branch 'origin/staging' into staging

parents 14a2b1ad 750a3522
...@@ -149,7 +149,7 @@ public class IpResource implements Serializable { ...@@ -149,7 +149,7 @@ public class IpResource implements Serializable {
/** /**
* KCP端口号 * KCP端口号
*/ */
private int secondaryProxyPort = -1; private String secondaryProxyPort = "";
@Override @Override
public boolean equals(Object o) { public boolean equals(Object o) {
......
...@@ -35,7 +35,7 @@ public class IpResourceDto { ...@@ -35,7 +35,7 @@ public class IpResourceDto {
private String specialLineIp; private String specialLineIp;
private int secondaryProxyPort = -1; private String secondaryProxyPort = "";
public IpResourceDto() { public IpResourceDto() {
} }
...@@ -269,11 +269,11 @@ public class IpResourceDto { ...@@ -269,11 +269,11 @@ public class IpResourceDto {
this.bindShop = bindShop; this.bindShop = bindShop;
} }
public int getSecondaryProxyPort() { public String getSecondaryProxyPort() {
return secondaryProxyPort; return secondaryProxyPort;
} }
public void setSecondaryProxyPort(int secondaryProxyPort) { public void setSecondaryProxyPort(String secondaryProxyPort) {
this.secondaryProxyPort = secondaryProxyPort; this.secondaryProxyPort = secondaryProxyPort;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment