whyclj
2019-10-29 1c0469e45346d464e0c5672ee68f9ecd4fb6be7c
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
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; //备注
    
    private int plan_circle;//周期
    private int plan_rate;//次数
    
    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;
    }
    public int getPlan_circle() {
        return plan_circle;
    }
    public void setPlan_circle(int plan_circle) {
        this.plan_circle = plan_circle;
    }
    public int getPlan_rate() {
        return plan_rate;
    }
    public void setPlan_rate(int plan_rate) {
        this.plan_rate = plan_rate;
    }
    @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 + ", plan_circle=" + plan_circle
                + ", plan_rate=" + plan_rate + "]";
    }
    
}