客户端日志上传

This commit is contained in:
2023-12-13 20:23:21 +08:00
parent 78a7d56860
commit 650a835f42
5 changed files with 58 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ public class ClientConfig implements Serializable {
String clientSN;
String clientVid;
String clientPwd;
public String getServerIp() {
return serverIp;
}
@@ -41,4 +43,12 @@ public class ClientConfig implements Serializable {
public void setClientVid(String clientVid) {
this.clientVid = clientVid;
}
public String getClientPwd() {
return clientPwd;
}
public void setClientPwd(String clientPwd) {
this.clientPwd = clientPwd;
}
}