From 7c8ce9b9a7d3fc1aaa4a621e86415b25ad10a34f Mon Sep 17 00:00:00 2001
From: panlili2024 <14743743+panlili2024@user.noreply.gitee.com>
Date: 星期三, 19 三月 2025 09:36:28 +0800
Subject: [PATCH] 添加source屏扫码流程
---
HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/AuthenticateResponse.java | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/AuthenticateResponse.java b/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/AuthenticateResponse.java
index 1efcb5d..3c8e3f3 100644
--- a/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/AuthenticateResponse.java
+++ b/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/AuthenticateResponse.java
@@ -32,7 +32,7 @@
this.ip_address = ip_address;
}
- public class Auth implements Serializable {
+ public static class Auth implements Serializable {
private String localSecret;
public String getLocalSecret() { return localSecret; }
@@ -42,10 +42,12 @@
}
- public class GatewayObjects implements Serializable {
+ public static class GatewayObjects implements Serializable {
private String ip_address;
private String gatewayId;
private String oid;
+
+ private String homeId;
public String getIPAddress() { return ip_address; }
public void setIPAddress(String value) {
@@ -59,6 +61,14 @@
public String getOID() { return oid; }
public void setOID(String value) { this.oid = value; }
+
+ public String getHomeId() {
+ return homeId;
+ }
+
+ public void setHomeId(String homeId) {
+ this.homeId = homeId;
+ }
}
--
Gitblit v1.8.0