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
package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.mqttbeans;
 
/**
 * 控制类
 */
public class ZigbeeCtrlBean {
 
    /**
     * DeviceAddr : 000d6ffffe044e91
     * Epoint : 1
     * Cluster_ID : 6
     * Command : 2
     * SendMode : 2
     * Data : {"Value":20}
     */
 
    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 {
        /**
         * Value : 20
         */
 
        private int Value;
 
        public int getValue() {
            return Value;
        }
 
        public void setValue(int Value) {
            this.Value = Value;
        }
    }
}