1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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 + "]";
    }
    
}