package com.whyc.pojo;
|
|
import java.util.Date;
|
|
public class BatteryStorageTestDetail {
|
private Long batteryStorageTestDataId;
|
private Long testTime;
|
private Float voltage;
|
private Float current;
|
private Integer state;
|
private Float lostCapacity;
|
private Float remanentCapacity;
|
private Float realCapacity;
|
private Float capacityPercentage;
|
private Float temperature;
|
private Float humidity;
|
private Integer systemStatus;
|
private Integer deviceWorkStatus;
|
|
private Integer batteryStorageId;
|
|
public Integer getBatteryStorageId() {
|
return batteryStorageId;
|
}
|
|
public void setBatteryStorageId(Integer batteryStorageId) {
|
this.batteryStorageId = batteryStorageId;
|
}
|
|
public Long getBatteryStorageTestDataId() {
|
return batteryStorageTestDataId;
|
}
|
|
public void setBatteryStorageTestDataId(Long batteryStorageTestDataId) {
|
this.batteryStorageTestDataId = batteryStorageTestDataId;
|
}
|
|
public Long getTestTime() {
|
return testTime;
|
}
|
|
public void setTestTime(Long testTime) {
|
this.testTime = testTime;
|
}
|
|
public Float getVoltage() {
|
return voltage;
|
}
|
|
public void setVoltage(Float voltage) {
|
this.voltage = voltage;
|
}
|
|
public Float getCurrent() {
|
return current;
|
}
|
|
public void setCurrent(Float current) {
|
this.current = current;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Float getLostCapacity() {
|
return lostCapacity;
|
}
|
|
public void setLostCapacity(Float lostCapacity) {
|
this.lostCapacity = lostCapacity;
|
}
|
|
public Float getRemanentCapacity() {
|
return remanentCapacity;
|
}
|
|
public void setRemanentCapacity(Float remanentCapacity) {
|
this.remanentCapacity = remanentCapacity;
|
}
|
|
public Float getRealCapacity() {
|
return realCapacity;
|
}
|
|
public void setRealCapacity(Float realCapacity) {
|
this.realCapacity = realCapacity;
|
}
|
|
public Float getCapacityPercentage() {
|
return capacityPercentage;
|
}
|
|
public void setCapacityPercentage(Float capacityPercentage) {
|
this.capacityPercentage = capacityPercentage;
|
}
|
|
public Float getTemperature() {
|
return temperature;
|
}
|
|
public void setTemperature(Float temperature) {
|
this.temperature = temperature;
|
}
|
|
public Float getHumidity() {
|
return humidity;
|
}
|
|
public void setHumidity(Float humidity) {
|
this.humidity = humidity;
|
}
|
|
public Integer getSystemStatus() {
|
return systemStatus;
|
}
|
|
public void setSystemStatus(Integer systemStatus) {
|
this.systemStatus = systemStatus;
|
}
|
|
public Integer getDeviceWorkStatus() {
|
return deviceWorkStatus;
|
}
|
|
public void setDeviceWorkStatus(Integer deviceWorkStatus) {
|
this.deviceWorkStatus = deviceWorkStatus;
|
}
|
|
}
|