JLChen
2020-09-24 e91af284643d5e370b0d18c384fe8de65f59d9b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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;
    }
}