whyclj
2020-07-22 a5729100cb1eaa3584b3a194e46e1b8b52b3ed1a
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
package com.fgkj.dto;
 
import java.io.Serializable;
import java.util.Date;
 
public class BattDischarge_plan implements Serializable{
    private Integer num;
    private Integer Battgroupid;   
    private Integer BattIndexInFbs;            //设备中电池组是第几组
    private Date discharge_starttime;        // 放电开始时间
    private Date discharge_starttime1;
    private Date discharge_stoptime;        // 放电结束时间
    private Date discharge_stoptime1; 
    private Integer discharge_state;        // 放电状态 0未开始放电,1放电延时 2放电完成 3放电进行,4放电失败
    private Integer discharge_reason;        // 状态产生的原因(放电失败的原因,放电延时的原因)
    private Integer discharge_cleartype;    //放电计划是否有效:0无效。1有效
    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 BattDischarge_plan() {
        super();
    }
    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 getBattIndexInFbs() {
        return BattIndexInFbs;
    }
    public void setBattIndexInFbs(Integer battIndexInFbs) {
        BattIndexInFbs = battIndexInFbs;
    }
    public Date getDischarge_starttime() {
        return discharge_starttime;
    }
    public void setDischarge_starttime(Date discharge_starttime) {
        this.discharge_starttime = discharge_starttime;
    }
    public Date getDischarge_starttime1() {
        return discharge_starttime1;
    }
    public void setDischarge_starttime1(Date discharge_starttime1) {
        this.discharge_starttime1 = discharge_starttime1;
    }
    public Date getDischarge_stoptime() {
        return discharge_stoptime;
    }
    public void setDischarge_stoptime(Date discharge_stoptime) {
        this.discharge_stoptime = discharge_stoptime;
    }
    
    public Date getDischarge_stoptime1() {
        return discharge_stoptime1;
    }
    public void setDischarge_stoptime1(Date discharge_stoptime1) {
        this.discharge_stoptime1 = discharge_stoptime1;
    }
    public Integer getDischarge_state() {
        return discharge_state;
    }
    public void setDischarge_state(Integer discharge_state) {
        this.discharge_state = discharge_state;
    }
    public Integer getDischarge_reason() {
        return discharge_reason;
    }
    public void setDischarge_reason(Integer discharge_reason) {
        this.discharge_reason = discharge_reason;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    
    public Integer getDischarge_cleartype() {
        return discharge_cleartype;
    }
    public void setDischarge_cleartype(Integer discharge_cleartype) {
        this.discharge_cleartype = discharge_cleartype;
    }
    
    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;
    }
    @Override
    public String toString() {
        return "BattDischarge_plan [num=" + num + ", Battgroupid="
                + Battgroupid + ", BattIndexInFbs=" + BattIndexInFbs
                + ", discharge_starttime=" + discharge_starttime
                + ", discharge_starttime1=" + discharge_starttime1
                + ", discharge_stoptime=" + discharge_stoptime
                + ", discharge_stoptime1=" + discharge_stoptime1
                + ", discharge_state=" + discharge_state
                + ", discharge_reason=" + discharge_reason
                + ", discharge_cleartype=" + discharge_cleartype
                + ", 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 + "]";
    }
    
}