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;
|
}
|
}
|