JLChen
2020-05-20 cb1d79a28d0148762486930df073c966ada45e9a
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
package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean;
 
import java.util.List;
 
/**
 * 网关信息
 */
public class ZigbeeGatewayInfoBean {
 
 
 
    private boolean IsDomain;
    private String gatewayName;
    private String ipAddress;
    private String gatewayId;
    private int count;
 
 
    public boolean isDomain() {
        return IsDomain;
    }
 
    public void setDomain(boolean domain) {
        IsDomain = domain;
    }
 
    public String getGatewayName() {
        return gatewayName;
    }
 
    public void setGatewayName(String gatewayName) {
        this.gatewayName = gatewayName;
    }
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
 
    public String getIpAddress() {
        return ipAddress;
    }
 
    public void setIpAddress(String ipAddress) {
        this.ipAddress = ipAddress;
    }
 
    public String getGatewayId() {
        return gatewayId;
    }
 
    public void setGatewayId(String gatewayId) {
        this.gatewayId = gatewayId;
    }
}