扫描二维码入场逻辑

This commit is contained in:
2023-09-05 09:27:00 +08:00
parent f0ef32ffc6
commit 52aa9659a2
41 changed files with 1562 additions and 492 deletions

View File

@@ -0,0 +1,44 @@
package com.sv.barcode;
import java.io.Serializable;
public class ClientConfig implements Serializable {
String serverIp;
String serverPort;
String clientSN;
String clientVid;
public String getServerIp() {
return serverIp;
}
public void setServerIp(String serverIp) {
this.serverIp = serverIp;
}
public String getServerPort() {
return serverPort;
}
public void setServerPort(String serverPort) {
this.serverPort = serverPort;
}
public String getClientSN() {
return clientSN;
}
public void setClientSN(String clientSN) {
this.clientSN = clientSN;
}
public String getClientVid() {
return clientVid;
}
public void setClientVid(String clientVid) {
this.clientVid = clientVid;
}
}