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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * 储存的设备列表
 */
public class ZigbeeDeviceSaveBean  {
    private String ipAddress;//网关ip地址
    private String gatewayId;//网关id
    int mSubnetID;//对网关进行标记
    private int Device_ID;//设备id(标识是哪个设备)
    private int deviceMark;
    private String DeviceAddr;//设备mac地址(同一个设备(不同回路)只有一个mac地址)
    private int Epoint;//设备端口号(回路号)ChannelNum
    private String MacName;//设备名称
    private String DeviceName;//设备回路名称
    private List<ZigbeeDeviceListBean.Data.InClusterList> InClusterList;//输入族列表(保留)
 
    public int getDeviceMark() {
        return deviceMark;
    }
 
    public void setDeviceMark(int deviceMark) {
        this.deviceMark = deviceMark;
    }
 
    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;
    }
 
 
        public List<ZigbeeDeviceListBean.Data.InClusterList> getInClusterList() {
            return InClusterList;
        }
 
        public void setInClusterList(List<ZigbeeDeviceListBean.Data.InClusterList> inClusterList) {
            InClusterList = inClusterList;
        }
 
        public int getmSubnetID() {
            return mSubnetID;
        }
 
        public void setmSubnetID(int mSubnetID) {
            this.mSubnetID = mSubnetID;
        }
 
        public int getDevice_ID() {
            return Device_ID;
        }
 
        public void setDevice_ID(int device_ID) {
            Device_ID = device_ID;
        }
 
        public String getDeviceAddr() {
            return DeviceAddr;
        }
 
        public void setDeviceAddr(String deviceAddr) {
            DeviceAddr = deviceAddr;
        }
 
        public int getEpoint() {
            return Epoint;
        }
 
        public void setEpoint(int epoint) {
            Epoint = epoint;
        }
 
        public String getMacName() {
            return MacName;
        }
 
        public void setMacName(String macName) {
            MacName = macName;
        }
 
        public String getDeviceName() {
            return DeviceName;
        }
 
        public void setDeviceName(String deviceName) {
            DeviceName = deviceName;
        }
 
 
 
        public static class inClusterList{
            private int InCluster;
 
            public int getInCluster() {
                return InCluster;
            }
 
            public void setInCluster(int inCluster) {
                InCluster = inCluster;
            }
        }
}