package com.fgkj.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
@Alias("Ld9testdata_inf")
|
public class Ld9testdata_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 Integer record_time_interval;
|
private Integer record_num;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date test_starttime;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date test_starttime_ex;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date record_time;
|
private Integer test_timelong;
|
private Integer test_stoptype;
|
private Integer test_stopreason;
|
private Float group_vol;
|
private Float test_curr;
|
private Float test_cap;
|
private Integer mon_num;
|
private Float mon_vol;
|
private float max_monvol;
|
private float min_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 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 Integer getRecord_time_interval() {
|
return record_time_interval;
|
}
|
public void setRecord_time_interval(Integer record_time_interval) {
|
this.record_time_interval = record_time_interval;
|
}
|
public Integer getRecord_num() {
|
return record_num;
|
}
|
public void setRecord_num(Integer record_num) {
|
this.record_num = record_num;
|
}
|
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 Date getRecord_time() {
|
return record_time;
|
}
|
public void setRecord_time(Date record_time) {
|
this.record_time = record_time;
|
}
|
public Integer getTest_timelong() {
|
return test_timelong;
|
}
|
public void setTest_timelong(Integer test_timelong) {
|
this.test_timelong = test_timelong;
|
}
|
public Integer getTest_stoptype() {
|
return test_stoptype;
|
}
|
public void setTest_stoptype(Integer test_stoptype) {
|
this.test_stoptype = test_stoptype;
|
}
|
public Integer getTest_stopreason() {
|
return test_stopreason;
|
}
|
public void setTest_stopreason(Integer test_stopreason) {
|
this.test_stopreason = test_stopreason;
|
}
|
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 Float getTest_cap() {
|
return test_cap;
|
}
|
public void setTest_cap(Float test_cap) {
|
this.test_cap = test_cap;
|
}
|
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 getMax_monvol() {
|
return max_monvol;
|
}
|
public void setMax_monvol(float max_monvol) {
|
this.max_monvol = max_monvol;
|
}
|
public float getMin_monvol() {
|
return min_monvol;
|
}
|
public void setMin_monvol(float min_monvol) {
|
this.min_monvol = min_monvol;
|
}
|
|
@Override
|
public String toString() {
|
return "Ld9testdata_inf{" +
|
"num=" + num +
|
", battGroupId=" + battGroupId +
|
", test_record_count=" + test_record_count +
|
", test_record_count_ex=" + test_record_count_ex +
|
", test_type=" + test_type +
|
", record_time_interval=" + record_time_interval +
|
", record_num=" + record_num +
|
", test_starttime=" + test_starttime +
|
", test_starttime_ex=" + test_starttime_ex +
|
", record_time=" + record_time +
|
", test_timelong=" + test_timelong +
|
", test_stoptype=" + test_stoptype +
|
", test_stopreason=" + test_stopreason +
|
", group_vol=" + group_vol +
|
", test_curr=" + test_curr +
|
", test_cap=" + test_cap +
|
", mon_num=" + mon_num +
|
", mon_vol=" + mon_vol +
|
", max_monvol=" + max_monvol +
|
", min_monvol=" + min_monvol +
|
'}';
|
}
|
}
|