562935844@qq.com
2023-08-31 fdcf461fbfa3bcd650685743e891ad3357898f0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
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;
        }
    }
 
 
}