JLChen
2020-09-24 e91af284643d5e370b0d18c384fe8de65f59d9b3
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
package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.mqttbeans;
 
import java.util.List;
 
/**
 * 设备状态读取表
 */
public class ZigbeeReadBean {
 
 
    /**
     * DeviceAddr : 000d6ffffe044e91
     * Epoint : 1
     * Cluster_ID : 6
     * Command : 2
     * SendMode : 2
     * Data : {"AttriBute":[{"AttriButeId":0}]}
     */
 
    private String DeviceAddr;
    private int Epoint;
    private int Cluster_ID;
    private int Command;
    private int SendMode;
    private DataBean Data;
 
    public String getDeviceAddr() {
        return DeviceAddr;
    }
 
    public void setDeviceAddr(String DeviceAddr) {
        this.DeviceAddr = DeviceAddr;
    }
 
    public int getEpoint() {
        return Epoint;
    }
 
    public void setEpoint(int Epoint) {
        this.Epoint = Epoint;
    }
 
    public int getCluster_ID() {
        return Cluster_ID;
    }
 
    public void setCluster_ID(int Cluster_ID) {
        this.Cluster_ID = Cluster_ID;
    }
 
    public int getCommand() {
        return Command;
    }
 
    public void setCommand(int Command) {
        this.Command = Command;
    }
 
    public int getSendMode() {
        return SendMode;
    }
 
    public void setSendMode(int SendMode) {
        this.SendMode = SendMode;
    }
 
    public DataBean getData() {
        return Data;
    }
 
    public void setData(DataBean Data) {
        this.Data = Data;
    }
 
    public static class DataBean {
        private List<AttriButeBean> AttriBute;
 
        public List<AttriButeBean> getAttriBute() {
            return AttriBute;
        }
 
        public void setAttriBute(List<AttriButeBean> AttriBute) {
            this.AttriBute = AttriBute;
        }
 
        public static class AttriButeBean {
            /**
             * AttriButeId : 0
             */
 
            private int AttriButeId;
 
            public int getAttriButeId() {
                return AttriButeId;
            }
 
            public void setAttriButeId(int AttriButeId) {
                this.AttriButeId = AttriButeId;
            }
        }
    }
}