package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.mqttbeans;
|
|
/**
|
* 恒温器或新风控制类
|
*/
|
public class ZigbeeWriteCtrlBean {
|
private String DeviceAddr;
|
private int Epoint;
|
private int Cluster_ID;
|
private int Command;
|
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 Data getData() {
|
return data;
|
}
|
|
public void setData(Data data) {
|
this.data = data;
|
}
|
|
public static class Data{
|
private int Undivided;
|
private int AttributeId;
|
private int AttributeDataType;
|
private int AttributeData;
|
|
public int getUndivided() {
|
return Undivided;
|
}
|
|
public void setUndivided(int undivided) {
|
Undivided = undivided;
|
}
|
|
public int getAttributeId() {
|
return AttributeId;
|
}
|
|
public void setAttributeId(int attributeId) {
|
AttributeId = attributeId;
|
}
|
|
public int getAttributeDataType() {
|
return AttributeDataType;
|
}
|
|
public void setAttributeDataType(int attributeDataType) {
|
AttributeDataType = attributeDataType;
|
}
|
|
public int getAttributeData() {
|
return AttributeData;
|
}
|
|
public void setAttributeData(int attributeData) {
|
AttributeData = attributeData;
|
}
|
}
|
}
|