package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* 电池电阻/电导数据
|
*/
|
@Alias("BattResDataInf")
|
@TableName(schema = "db_batt_testdata", value = "tb_battresdata_inf")
|
public class BattResDataInf {
|
|
@TableId
|
private Long num;
|
@TableField(value = "BattGroupId")
|
private Integer battGroupId;
|
private Integer testRecordCount;
|
private Integer testRecordCountEx;
|
private Integer testType;
|
private Integer dataNew;
|
private Integer dataAvailable;
|
@TableField(value = "test_starttime")
|
private Date testStartTime;
|
@TableField(value = "test_starttime_ex")
|
private Date testStartTimeEx;
|
@TableField(value = "test_devtype")
|
private Integer testDevType;
|
private Date recordTime;
|
private Float groupVol;
|
private Float testCurr;
|
@TableField(value = "upload_usr_id")
|
private Integer uploadUserId;
|
private Integer uploadClientType;
|
|
public Long getNum() {
|
return num;
|
}
|
|
public void setNum(Long 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 Integer getTestRecordCountEx() {
|
return testRecordCountEx;
|
}
|
|
public void setTestRecordCountEx(Integer testRecordCountEx) {
|
this.testRecordCountEx = testRecordCountEx;
|
}
|
|
public Integer getTestType() {
|
return testType;
|
}
|
|
public void setTestType(Integer testType) {
|
this.testType = testType;
|
}
|
|
public Integer getDataNew() {
|
return dataNew;
|
}
|
|
public void setDataNew(Integer dataNew) {
|
this.dataNew = dataNew;
|
}
|
|
public Integer getDataAvailable() {
|
return dataAvailable;
|
}
|
|
public void setDataAvailable(Integer dataAvailable) {
|
this.dataAvailable = dataAvailable;
|
}
|
|
public Date getTestStartTime() {
|
return testStartTime;
|
}
|
|
public void setTestStartTime(Date testStartTime) {
|
this.testStartTime = testStartTime;
|
}
|
|
public Date getTestStartTimeEx() {
|
return testStartTimeEx;
|
}
|
|
public void setTestStartTimeEx(Date testStartTimeEx) {
|
this.testStartTimeEx = testStartTimeEx;
|
}
|
|
public Integer getTestDevType() {
|
return testDevType;
|
}
|
|
public void setTestDevType(Integer testDevType) {
|
this.testDevType = testDevType;
|
}
|
|
public Date getRecordTime() {
|
return recordTime;
|
}
|
|
public void setRecordTime(Date recordTime) {
|
this.recordTime = recordTime;
|
}
|
|
public Float getGroupVol() {
|
return groupVol;
|
}
|
|
public void setGroupVol(Float groupVol) {
|
this.groupVol = groupVol;
|
}
|
|
public Float getTestCurr() {
|
return testCurr;
|
}
|
|
public void setTestCurr(Float testCurr) {
|
this.testCurr = testCurr;
|
}
|
|
public Integer getUploadUserId() {
|
return uploadUserId;
|
}
|
|
public void setUploadUserId(Integer uploadUserId) {
|
this.uploadUserId = uploadUserId;
|
}
|
|
public Integer getUploadClientType() {
|
return uploadClientType;
|
}
|
|
public void setUploadClientType(Integer uploadClientType) {
|
this.uploadClientType = uploadClientType;
|
}
|
}
|