package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Battresdata implements Serializable{
|
private Integer num;
|
private Integer BattGroupId;
|
private Integer test_record_count;
|
private Integer test_type;
|
private Integer data_new;
|
private Integer data_available;
|
private Date test_starttime;
|
private Float group_vol;
|
private Float test_curr;
|
private Integer mon_num;
|
private Float mon_vol;
|
private Float mon_tmp;
|
private Float mon_res;
|
private Float mon_ser;
|
private Float conn_res;
|
private Float mon_avg;
|
private Float mon_min;
|
private Float lowC;
|
private Float lowV;
|
|
public Battresdata() {
|
super();
|
// TODO Auto-generated constructor stub
|
}
|
public Integer getNum() {
|
return num;
|
}
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
public Integer getBattGroupId() {
|
return BattGroupId;
|
}
|
public void setBattGroupId(Integer battGroupId) {
|
BattGroupId = battGroupId;
|
}
|
public Integer getTest_record_count() {
|
return test_record_count;
|
}
|
public void setTest_record_count(Integer test_record_count) {
|
this.test_record_count = test_record_count;
|
}
|
public Integer getTest_type() {
|
return test_type;
|
}
|
public void setTest_type(Integer test_type) {
|
this.test_type = test_type;
|
}
|
public Integer getData_new() {
|
return data_new;
|
}
|
public void setData_new(Integer data_new) {
|
this.data_new = data_new;
|
}
|
public Integer getData_available() {
|
return data_available;
|
}
|
public void setData_available(Integer data_available) {
|
this.data_available = data_available;
|
}
|
public Date getTest_starttime() {
|
return test_starttime;
|
}
|
public void setTest_starttime(Date test_starttime) {
|
this.test_starttime = test_starttime;
|
}
|
public Float getGroup_vol() {
|
return group_vol;
|
}
|
public void setGroup_vol(Float group_vol) {
|
this.group_vol = group_vol;
|
}
|
public Float getTest_curr() {
|
return test_curr;
|
}
|
public void setTest_curr(Float test_curr) {
|
this.test_curr = test_curr;
|
}
|
public Integer getMon_num() {
|
return mon_num;
|
}
|
public void setMon_num(Integer mon_num) {
|
this.mon_num = mon_num;
|
}
|
public Float getMon_vol() {
|
return mon_vol;
|
}
|
public void setMon_vol(Float mon_vol) {
|
this.mon_vol = mon_vol;
|
}
|
public Float getMon_tmp() {
|
return mon_tmp;
|
}
|
public void setMon_tmp(Float mon_tmp) {
|
this.mon_tmp = mon_tmp;
|
}
|
public Float getMon_res() {
|
return mon_res;
|
}
|
public void setMon_res(Float mon_res) {
|
this.mon_res = mon_res;
|
}
|
public Float getMon_ser() {
|
return mon_ser;
|
}
|
public void setMon_ser(Float mon_ser) {
|
this.mon_ser = mon_ser;
|
}
|
public Float getConn_res() {
|
return conn_res;
|
}
|
public void setConn_res(Float conn_res) {
|
this.conn_res = conn_res;
|
}
|
|
public Float getMon_avg() {
|
return mon_avg;
|
}
|
public void setMon_avg(Float mon_avg) {
|
this.mon_avg = mon_avg;
|
}
|
|
public Float getMon_min() {
|
return mon_min;
|
}
|
public void setMon_min(Float mon_min) {
|
this.mon_min = mon_min;
|
}
|
public Float getLowC() {
|
return lowC;
|
}
|
public void setLowC(Float lowC) {
|
this.lowC = lowC;
|
}
|
public Float getLowV() {
|
return lowV;
|
}
|
public void setLowV(Float lowV) {
|
this.lowV = lowV;
|
}
|
@Override
|
public String toString() {
|
return "Battresdata [num=" + num + ", BattGroupId=" + BattGroupId
|
+ ", test_record_count=" + test_record_count + ", test_type="
|
+ test_type + ", data_new=" + data_new + ", data_available="
|
+ data_available + ", test_starttime=" + test_starttime
|
+ ", group_vol=" + group_vol + ", test_curr=" + test_curr
|
+ ", mon_num=" + mon_num + ", mon_vol=" + mon_vol
|
+ ", mon_tmp=" + mon_tmp + ", mon_res=" + mon_res
|
+ ", mon_ser=" + mon_ser + ", conn_res=" + conn_res
|
+ ", mon_avg=" + mon_avg + ", mon_min=" + mon_min + ", lowC="
|
+ lowC + ", lowV=" + lowV + "]";
|
}
|
|
|
|
|
}
|