package com.fgkj.dto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class BattDischarge_param implements Serializable{
|
private Integer num;
|
private String param_name;//参数名称
|
private Integer preset_time; //预设放电时长到
|
private Float preset_cap; //预设放电容量到
|
private Float preset_monvol; //单体电压下限到
|
private Float preset_groupvol; //组端电压下限到
|
private Float preset_curr; //放电电流
|
private Integer preset_mon;//单体下限数量
|
private Float dcvolhighlimit;//升压上限
|
private Float chargecurrset;//充电电流
|
private String note; //备注
|
|
|
public String getParam_name() {
|
return param_name;
|
}
|
public void setParam_name(String param_name) {
|
this.param_name = param_name;
|
}
|
public BattDischarge_param() {
|
super();
|
}
|
public Integer getNum() {
|
return num;
|
}
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
public Integer getPreset_time() {
|
return preset_time;
|
}
|
public void setPreset_time(Integer preset_time) {
|
this.preset_time = preset_time;
|
}
|
public Float getPreset_cap() {
|
return preset_cap;
|
}
|
public void setPreset_cap(Float preset_cap) {
|
this.preset_cap = preset_cap;
|
}
|
public Float getPreset_monvol() {
|
return preset_monvol;
|
}
|
public void setPreset_monvol(Float preset_monvol) {
|
this.preset_monvol = preset_monvol;
|
}
|
public Float getPreset_groupvol() {
|
return preset_groupvol;
|
}
|
public void setPreset_groupvol(Float preset_groupvol) {
|
this.preset_groupvol = preset_groupvol;
|
}
|
|
public Float getPreset_curr() {
|
return preset_curr;
|
}
|
public void setPreset_curr(Float preset_curr) {
|
this.preset_curr = preset_curr;
|
}
|
public Integer getPreset_mon() {
|
return preset_mon;
|
}
|
public void setPreset_mon(Integer preset_mon) {
|
this.preset_mon = preset_mon;
|
}
|
|
public Float getDcvolhighlimit() {
|
return dcvolhighlimit;
|
}
|
public void setDcvolhighlimit(Float dcvolhighlimit) {
|
this.dcvolhighlimit = dcvolhighlimit;
|
}
|
public Float getChargecurrset() {
|
return chargecurrset;
|
}
|
public void setChargecurrset(Float chargecurrset) {
|
this.chargecurrset = chargecurrset;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "BattDischarge_param [num=" + num + ", param_name=" + param_name
|
+ ", preset_time=" + preset_time + ", preset_cap=" + preset_cap
|
+ ", preset_monvol=" + preset_monvol + ", preset_groupvol="
|
+ preset_groupvol + ", preset_curr=" + preset_curr
|
+ ", preset_mon=" + preset_mon + ", dcvolhighlimit="
|
+ dcvolhighlimit + ", chargecurrset=" + chargecurrset
|
+ ", note=" + note + "]";
|
}
|
|
}
|