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
package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.mqttbeans;
 
/**
 * 调光器控制类
 */
public class ZigbeeDimmableCtrlBean {
    /**
     * 调光器直接控制类
     */
    private String DeviceAddr;
    private int Epoint;
    private int Cluster_ID;
    private int Command;
    private int SendMode;
    private Data data;
 
    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 int getCluster_ID() {
        return Cluster_ID;
    }
 
    public void setCluster_ID(int cluster_ID) {
        Cluster_ID = cluster_ID;
    }
 
    public int getCommand() {
        return Command;
    }
 
    public void setCommand(int command) {
        Command = command;
    }
 
    public int getSendMode() {
        return SendMode;
    }
 
    public void setSendMode(int sendMode) {
        SendMode = sendMode;
    }
 
    public Data getData() {
        return data;
    }
 
    public void setData(Data data) {
        this.data = data;
    }
 
    public static class Data{
        private int Level;//亮度值
        private int TransitionTime;//转换时间
 
        public int getLevel() {
            return Level;
        }
 
        public void setLevel(int level) {
            Level = level;
        }
 
        public int getTransitionTime() {
            return TransitionTime;
        }
 
        public void setTransitionTime(int transitionTime) {
            TransitionTime = transitionTime;
        }
    }
}