package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.mqttbeans;
|
|
/**
|
* 恒温器温度控制表
|
*/
|
public class ZigbeeThermostatCtrlBean {
|
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 Mode;//要调节的模式
|
private int Amount;//要变化的度数
|
|
public int getMode() {
|
return Mode;
|
}
|
|
public void setMode(int mode) {
|
Mode = mode;
|
}
|
|
public int getAmount() {
|
return Amount;
|
}
|
|
public void setAmount(int amount) {
|
Amount = amount;
|
}
|
}
|
}
|