调整代码位置

This commit is contained in:
lin
2025-03-20 14:18:41 +08:00
parent 8df00a8db5
commit a4e810da12
4 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,27 @@
package com.genersoft.iot.vmp.common;
public class RemoteAddressInfo {
private String ip;
private int port;
public RemoteAddressInfo(String ip, int port) {
this.ip = ip;
this.port = port;
}
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;
}
}