李宇
2021-08-18 c3510da29a7974c6af7ff3de1ade3db429d6f848
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
package com.nanometer.smartlab.entity.dto;
 
import java.io.Serializable;
 
public class ContainerStatusMngDto implements Serializable {
 
    //场所id
 
    private String id;
    private float temp;
    private float humidity;
    private float voc1;
    private String laboratoryName;
    private String laboratoryContainerName;
    private String flag;
    private boolean lowTempAlert;
    private boolean highTempAlert;
    private boolean lowHumidityAlert;
    private boolean highHumidityAlert;
    private boolean voc1Alert;
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public float getTemp() {
        return temp;
    }
 
    public void setTemp(float temp) {
        this.temp = temp;
    }
 
    public float getHumidity() {
        return humidity;
    }
 
    public void setHumidity(float humidity) {
        this.humidity = humidity;
    }
 
    public float getVoc1() {
        return voc1;
    }
 
    public void setVoc1(float voc1) {
        this.voc1 = voc1;
    }
 
    public String getLaboratoryName() {
        return laboratoryName;
    }
 
    public void setLaboratoryName(String laboratoryName) {
        this.laboratoryName = laboratoryName;
    }
 
    public String getLaboratoryContainerName() {
        return laboratoryContainerName;
    }
 
    public void setLaboratoryContainerName(String laboratoryContainerName) {
        this.laboratoryContainerName = laboratoryContainerName;
    }
 
    public String getFlag() {
        return flag;
    }
 
    public void setFlag(String flag) {
        this.flag = flag;
    }
 
    public boolean isLowTempAlert() {
        return lowTempAlert;
    }
 
    public void setLowTempAlert(boolean lowTempAlert) {
        this.lowTempAlert = lowTempAlert;
    }
 
    public boolean isHighTempAlert() {
        return highTempAlert;
    }
 
    public void setHighTempAlert(boolean highTempAlert) {
        this.highTempAlert = highTempAlert;
    }
 
    public boolean isLowHumidityAlert() {
        return lowHumidityAlert;
    }
 
    public void setLowHumidityAlert(boolean lowHumidityAlert) {
        this.lowHumidityAlert = lowHumidityAlert;
    }
 
    public boolean isHighHumidityAlert() {
        return highHumidityAlert;
    }
 
    public void setHighHumidityAlert(boolean highHumidityAlert) {
        this.highHumidityAlert = highHumidityAlert;
    }
 
    public boolean isVoc1Alert() {
        return voc1Alert;
    }
 
    public void setVoc1Alert(boolean voc1Alert) {
        this.voc1Alert = voc1Alert;
    }
}