From fdcf461fbfa3bcd650685743e891ad3357898f0c Mon Sep 17 00:00:00 2001
From: 562935844@qq.com
Date: 星期四, 31 八月 2023 17:36:50 +0800
Subject: [PATCH] 更新sdk

---
 HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/DeviceInfoResponse.java |   79 +++++++++++++++++++++++++++++++++++++++
 1 files changed, 79 insertions(+), 0 deletions(-)

diff --git a/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/DeviceInfoResponse.java b/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/DeviceInfoResponse.java
new file mode 100644
index 0000000..a819363
--- /dev/null
+++ b/HDLSDK/hdl-connect/src/main/java/com/hdl/sdk/connect/bean/response/DeviceInfoResponse.java
@@ -0,0 +1,79 @@
+package com.hdl.sdk.connect.bean.response;
+
+import java.io.Serializable;
+
+/**
+ * Created by jlchen on 11/12/21.
+ *
+ * @Description : DeviceInfoResponse
+ */
+public class DeviceInfoResponse extends BaseResponse {
+    private GatewayObjects objects;
+
+    public GatewayObjects getObjects() {
+        return objects;
+    }
+
+    public void setObjects(GatewayObjects value) {
+        this.objects = value;
+    }
+
+    public class GatewayObjects implements Serializable {
+        private String ip_address;
+        private String gatewayId;
+        private String oid;
+        private String homeId;
+        private String mac;
+        private String local_secret;
+
+        public String getIPAddress() {
+            return ip_address;
+        }
+
+        public void setIPAddress(String value) {
+            this.ip_address = value;
+        }
+
+        public String getGatewayID() {
+            return gatewayId;
+        }
+
+        public void setGatewayID(String value) {
+            this.gatewayId = value;
+        }
+
+        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;
+        }
+
+        public String getMac() {
+            return mac;
+        }
+
+        public void setMac(String mac) {
+            this.mac = mac;
+        }
+
+        public String getLocalSecret() {
+            return local_secret;
+        }
+
+        public void setLocalSecret(String localSecret) {
+            local_secret = localSecret;
+        }
+    }
+
+
+}

--
Gitblit v1.8.0