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;
|
}
|
}
|
}
|