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