package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Battresdata_inf implements Serializable{
|
private Integer num;
|
private Integer BattGroupId;
|
private Integer test_record_count;
|
private Integer test_record_count_ex;
|
private Integer test_type;
|
private Float data_new;
|
private Integer data_available;
|
private Date test_starttime;
|
private Date test_starttime_ex;
|
private Integer test_devtype;
|
private String test_starttypeHex;
|
private Date record_time;
|
private Float group_vol;
|
private Float test_curr;
|
private Integer upload_usr_id;
|
//stationname四个变量用于数据统计报表查询6.4
|
private String stationname1;
|
private String stationname2;
|
private String stationname3;
|
private String stationname4;
|
public Battresdata_inf() {
|
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_record_count_ex() {
|
return test_record_count_ex;
|
}
|
public void setTest_record_count_ex(Integer test_record_count_ex) {
|
this.test_record_count_ex = test_record_count_ex;
|
}
|
public Integer getTest_type() {
|
return test_type;
|
}
|
public void setTest_type(Integer test_type) {
|
this.test_type = test_type;
|
}
|
public String getTest_starttypeHex() {
|
return test_starttypeHex;
|
}
|
public void setTest_starttypeHex(String test_starttypeHex) {
|
this.test_starttypeHex = test_starttypeHex;
|
}
|
public Float getData_new() {
|
return data_new;
|
}
|
public void setData_new(Float 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 Date getTest_starttime_ex() {
|
return test_starttime_ex;
|
}
|
public void setTest_starttime_ex(Date test_starttime_ex) {
|
this.test_starttime_ex = test_starttime_ex;
|
}
|
public Integer getTest_devtype() {
|
return test_devtype;
|
}
|
public void setTest_devtype(Integer test_devtype) {
|
this.test_devtype = test_devtype;
|
}
|
public Date getRecord_time() {
|
return record_time;
|
}
|
public void setRecord_time(Date record_time) {
|
this.record_time = record_time;
|
}
|
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 getUpload_usr_id() {
|
return upload_usr_id;
|
}
|
public void setUpload_usr_id(Integer upload_usr_id) {
|
this.upload_usr_id = upload_usr_id;
|
}
|
|
public String getStationname1() {
|
return stationname1;
|
}
|
public void setStationname1(String stationname1) {
|
this.stationname1 = stationname1;
|
}
|
public String getStationname2() {
|
return stationname2;
|
}
|
public void setStationname2(String stationname2) {
|
this.stationname2 = stationname2;
|
}
|
|
public String getStationname3() {
|
return stationname3;
|
}
|
public void setStationname3(String stationname3) {
|
this.stationname3 = stationname3;
|
}
|
public String getStationname4() {
|
return stationname4;
|
}
|
public void setStationname4(String stationname4) {
|
this.stationname4 = stationname4;
|
}
|
@Override
|
public String toString() {
|
return "Battresdata_inf [num=" + num + ", BattGroupId=" + BattGroupId
|
+ ", test_record_count=" + test_record_count
|
+ ", test_record_count_ex=" + test_record_count_ex
|
+ ", test_type=" + test_type + ", data_new=" + data_new
|
+ ", data_available=" + data_available + ", test_starttime="
|
+ test_starttime + ", test_starttime_ex=" + test_starttime_ex
|
+ ", test_devtype=" + test_devtype + ", test_starttypeHex="
|
+ test_starttypeHex + ", record_time=" + record_time
|
+ ", group_vol=" + group_vol + ", test_curr=" + test_curr
|
+ ", upload_usr_id=" + upload_usr_id + ", stationname1="
|
+ stationname1 + ", stationname2=" + stationname2
|
+ ", stationname3=" + stationname3 + ", stationname4="
|
+ stationname4 + "]";
|
}
|
|
|
|
|
}
|