package com.whyc.pojo;
|
|
import java.util.Date;
|
|
public class BatteryStorageTestData {
|
|
private Long id;
|
private Integer batteryStorageId;
|
private Date startTestTime;
|
private Date stopTestTime;
|
private Integer testDuration;
|
private Integer testType;
|
private String startReason;
|
private Float voltage;
|
private Float current;
|
private Float realCapacity;
|
|
/**不属于表的字段*/
|
private Integer testRecordCount;
|
private Integer testRecordCountEx;
|
|
public Integer getTestRecordCount() {
|
return testRecordCount;
|
}
|
|
public void setTestRecordCount(Integer testRecordCount) {
|
this.testRecordCount = testRecordCount;
|
}
|
|
public Integer getTestRecordCountEx() {
|
return testRecordCountEx;
|
}
|
|
public void setTestRecordCountEx(Integer testRecordCountEx) {
|
this.testRecordCountEx = testRecordCountEx;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Date getStartTestTime() {
|
return startTestTime;
|
}
|
|
public void setStartTestTime(Date startTestTime) {
|
this.startTestTime = startTestTime;
|
}
|
|
public Date getStopTestTime() {
|
return stopTestTime;
|
}
|
|
public void setStopTestTime(Date stopTestTime) {
|
this.stopTestTime = stopTestTime;
|
}
|
|
public Integer getTestType() {
|
return testType;
|
}
|
|
public void setTestType(Integer testType) {
|
this.testType = testType;
|
}
|
|
public String getStartReason() {
|
return startReason;
|
}
|
|
public void setStartReason(String startReason) {
|
this.startReason = startReason;
|
}
|
|
public Integer getBatteryStorageId() {
|
return batteryStorageId;
|
}
|
|
public void setBatteryStorageId(Integer batteryStorageId) {
|
this.batteryStorageId = batteryStorageId;
|
}
|
|
public Integer getTestDuration() {
|
return testDuration;
|
}
|
|
public void setTestDuration(Integer testDuration) {
|
this.testDuration = testDuration;
|
}
|
|
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 Float getRealCapacity() {
|
return realCapacity;
|
}
|
|
public void setRealCapacity(Float realCapacity) {
|
this.realCapacity = realCapacity;
|
}
|
}
|