Merge branch 'master' into 重构/1078

This commit is contained in:
lin
2025-03-24 15:19:07 +08:00
39 changed files with 1382 additions and 1379 deletions

View File

@@ -1,5 +0,0 @@
package com.genersoft.iot.vmp.common;
public interface GeneralCallback<T>{
void run(int code, String msg, T data);
}

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;
}
}