1078-添加设备控制

This commit is contained in:
648540858
2024-04-29 22:12:27 +08:00
parent 516c5ce3d1
commit 8aa97ba695
4 changed files with 72 additions and 5 deletions

View File

@@ -128,4 +128,19 @@ public class JTDeviceConnectionControl {
public void setTimeLimit(Long timeLimit) {
this.timeLimit = timeLimit;
}
@Override
public String toString() {
return "JTDeviceConnectionControl{" +
"switchOn=" + switchOn +
", authentication='" + authentication + '\'' +
", name='" + name + '\'' +
", username='" + username + '\'' +
", password='" + password + '\'' +
", address='" + address + '\'' +
", tcpPort=" + tcpPort +
", udpPort=" + udpPort +
", timeLimit=" + timeLimit +
'}';
}
}