package com.hdl.sdk.hdl_core.HDLDeviceManger.Bean.ZigbeeBean.gatewaybeans;
|
|
/**
|
* 恒温器状态返回类
|
*/
|
public class StatusThermostatReadBean {
|
private int tag;//标志返回什么数据
|
private int thermostatmode;//恒温器模式
|
private int fanmode;//新风模式
|
private int coolingSetpoint;//制冷温度
|
private int heatingSetpoint;//制热温度
|
|
public int getTag() {
|
return tag;
|
}
|
|
public void setTag(int tag) {
|
this.tag = tag;
|
}
|
|
public int getCoolingSetpoint() {
|
return coolingSetpoint;
|
}
|
|
public void setCoolingSetpoint(int coolingSetpoint) {
|
this.coolingSetpoint = coolingSetpoint;
|
}
|
|
public int getHeatingSetpoint() {
|
return heatingSetpoint;
|
}
|
|
public void setHeatingSetpoint(int heatingSetpoint) {
|
this.heatingSetpoint = heatingSetpoint;
|
}
|
|
public int getThermostatmode() {
|
return thermostatmode;
|
}
|
|
public void setThermostatmode(int thermostatmode) {
|
this.thermostatmode = thermostatmode;
|
}
|
|
public int getFanmode() {
|
return fanmode;
|
}
|
|
public void setFanmode(int fanmode) {
|
this.fanmode = fanmode;
|
}
|
}
|