From 99bc815e07e39354f51421b77f4012ffd35594d8 Mon Sep 17 00:00:00 2001
From: wjc <1243177876@qq.com>
Date: 星期三, 28 六月 2023 18:03:00 +0800
Subject: [PATCH] 2023年06月28日18:02:58
---
HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/response/AuthenticateResponse.java | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 47 insertions(+), 0 deletions(-)
diff --git a/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/response/AuthenticateResponse.java b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/response/AuthenticateResponse.java
new file mode 100644
index 0000000..ea7d429
--- /dev/null
+++ b/HDLLinkLocalSdk/src/main/java/com/hdl/sdk/link/core/bean/response/AuthenticateResponse.java
@@ -0,0 +1,47 @@
+package com.hdl.sdk.link.core.bean.response;
+
+import java.io.Serializable;
+
+/**
+ * Created by jlchen on 11/12/21.
+ *
+ * @Description : AuthenticateResponseBean
+ */
+public class AuthenticateResponse extends BaseResponse {
+ private String code;
+ private GatewayObjects objects;
+ private Auth auth;
+
+ public String getCode() { return code; }
+ public void setCode(String value) { this.code = value; }
+
+ public GatewayObjects getObjects() { return objects; }
+ public void setObjects(GatewayObjects value) { this.objects = value; }
+
+ public Auth getAuth() { return auth; }
+ public void setAuth(Auth value) { this.auth = value; }
+
+ public class Auth implements Serializable {
+ private String localSecret;
+
+ public String getLocalSecret() { return localSecret; }
+ public void setLocalSecret(String value) { this.localSecret = value; }
+ }
+
+ public class GatewayObjects implements Serializable {
+ private String ip_address;
+ private String gatewayId;
+ private String oid;
+
+ 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; }
+ }
+
+
+}
--
Gitblit v1.8.0