package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* 一体机测试数据
|
*/
|
@Alias("FBOTestData")
|
public class FBOTestData {
|
|
@TableId
|
private Integer num;
|
@TableField("BattGroupId")
|
private Integer battGroupId;
|
private Integer testRecordCount;
|
@TableField("test_starttime")
|
private Date testStartTime;
|
@TableField("test_timelong")
|
private Integer testTimeLong;
|
private Date recordTime;
|
private Integer recordNum;
|
private Float onlineVol;
|
private Float sumVol;
|
private Float testCurr;
|
private Float testCap;
|
private Integer monNum;
|
private Float monVol;
|
|
public Integer getNum() {
|
return num;
|
}
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Integer getBattGroupId() {
|
return battGroupId;
|
}
|
|
public void setBattGroupId(Integer battGroupId) {
|
this.battGroupId = battGroupId;
|
}
|
|
public Integer getTestRecordCount() {
|
return testRecordCount;
|
}
|
|
public void setTestRecordCount(Integer testRecordCount) {
|
this.testRecordCount = testRecordCount;
|
}
|
|
public Date getTestStartTime() {
|
return testStartTime;
|
}
|
|
public void setTestStartTime(Date testStartTime) {
|
this.testStartTime = testStartTime;
|
}
|
|
public Integer getTestTimeLong() {
|
return testTimeLong;
|
}
|
|
public void setTestTimeLong(Integer testTimeLong) {
|
this.testTimeLong = testTimeLong;
|
}
|
|
public Date getRecordTime() {
|
return recordTime;
|
}
|
|
public void setRecordTime(Date recordTime) {
|
this.recordTime = recordTime;
|
}
|
|
public Integer getRecordNum() {
|
return recordNum;
|
}
|
|
public void setRecordNum(Integer recordNum) {
|
this.recordNum = recordNum;
|
}
|
|
public Float getOnlineVol() {
|
return onlineVol;
|
}
|
|
public void setOnlineVol(Float onlineVol) {
|
this.onlineVol = onlineVol;
|
}
|
|
public Float getSumVol() {
|
return sumVol;
|
}
|
|
public void setSumVol(Float sumVol) {
|
this.sumVol = sumVol;
|
}
|
|
public Float getTestCurr() {
|
return testCurr;
|
}
|
|
public void setTestCurr(Float testCurr) {
|
this.testCurr = testCurr;
|
}
|
|
public Float getTestCap() {
|
return testCap;
|
}
|
|
public void setTestCap(Float testCap) {
|
this.testCap = testCap;
|
}
|
|
public Integer getMonNum() {
|
return monNum;
|
}
|
|
public void setMonNum(Integer monNum) {
|
this.monNum = monNum;
|
}
|
|
public Float getMonVol() {
|
return monVol;
|
}
|
|
public void setMonVol(Float monVol) {
|
this.monVol = monVol;
|
}
|
}
|