Administrator
2021-05-13 62574ef5462e0f77fc4ab4dd8bc4f4ff1bff38bb
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package com.dev.fbs9600;
 
import java.util.Date;
 
public class FBS9600_Lithium_Data {
    public int BattGroupId;                    // '电池组ID',
    public Date record_time;                // '记录时间',
    public float envir_tmp;                    //'环境温度',
    public float power_tmp;                    //'功率温度',
    public float rest_cap;                    //'剩余容量',
    public int remote_control_count;        //'自定义遥控数量',
    public float batt_total_cap;            //'电池总容量',
    public int batt_cycles;                    //'电池循环次数',
    public int evir_tmp_alm_state;            //'环境温度告警状态',
    public int power_tmp_alm_state;            //'功率温度告警状态',
    public int discharge_curr_alm_state;    //'充放电电流告警状态',
    public int batt_totalvol_alm_state;        //'电池总电压告警状态',
    public int custom_alm_count;            //'自定义告警量数量',
    public int junheng_event_code;            //'均衡事件代码',
    public int vol_event_code;                //'电压事件代码',
    public int tmp_event_code;                //'温度事件代码',
    public int curr_event_code;                //'电流事件代码',
    public int fet_state_code;                //'FET状态代码',
    public int junheng_state_code;            //'均衡状态代码',
    public int sys_state_code;                //'系统状态代码',
    
    public FBS9600_Lithium_Data(int BattGroupId) {
        this.BattGroupId = BattGroupId;
    }
 
    public int getBattGroupId() {
        return BattGroupId;
    }
 
    public Date getRecord_time() {
        return record_time;
    }
 
    public float getEnvir_tmp() {
        return envir_tmp;
    }
 
    public float getPower_tmp() {
        return power_tmp;
    }
 
    public float getRest_cap() {
        return rest_cap;
    }
 
    public int getRemote_control_count() {
        return remote_control_count;
    }
 
    public float getBatt_total_cap() {
        return batt_total_cap;
    }
 
    public int getBatt_cycles() {
        return batt_cycles;
    }
 
    public int getEvir_tmp_alm_state() {
        return evir_tmp_alm_state;
    }
 
    public int getPower_tmp_alm_state() {
        return power_tmp_alm_state;
    }
 
    public int getDischarge_curr_alm_state() {
        return discharge_curr_alm_state;
    }
 
    public int getBatt_totalvol_alm_state() {
        return batt_totalvol_alm_state;
    }
 
    public int getCustom_alm_count() {
        return custom_alm_count;
    }
 
    public int getJunheng_event_code() {
        return junheng_event_code;
    }
 
    public int getVol_event_code() {
        return vol_event_code;
    }
 
    public int getTmp_event_code() {
        return tmp_event_code;
    }
 
    public int getCurr_event_code() {
        return curr_event_code;
    }
 
    public int getFet_state_code() {
        return fet_state_code;
    }
 
    public int getJunheng_state_code() {
        return junheng_state_code;
    }
 
    public int getSys_state_code() {
        return sys_state_code;
    }
 
    public void setBattGroupId(int battGroupId) {
        BattGroupId = battGroupId;
    }
 
    public void setRecord_time(Date record_time) {
        this.record_time = record_time;
    }
 
    public void setEnvir_tmp(float envir_tmp) {
        this.envir_tmp = envir_tmp;
    }
 
    public void setPower_tmp(float power_tmp) {
        this.power_tmp = power_tmp;
    }
 
    public void setRest_cap(float rest_cap) {
        this.rest_cap = rest_cap;
    }
 
    public void setRemote_control_count(int remote_control_count) {
        this.remote_control_count = remote_control_count;
    }
 
    public void setBatt_total_cap(float batt_total_cap) {
        this.batt_total_cap = batt_total_cap;
    }
 
    public void setBatt_cycles(int batt_cycles) {
        this.batt_cycles = batt_cycles;
    }
 
    public void setEvir_tmp_alm_state(int evir_tmp_alm_state) {
        this.evir_tmp_alm_state = evir_tmp_alm_state;
    }
 
    public void setPower_tmp_alm_state(int power_tmp_alm_state) {
        this.power_tmp_alm_state = power_tmp_alm_state;
    }
 
    public void setDischarge_curr_alm_state(int discharge_curr_alm_state) {
        this.discharge_curr_alm_state = discharge_curr_alm_state;
    }
 
    public void setBatt_totalvol_alm_state(int batt_totalvol_alm_state) {
        this.batt_totalvol_alm_state = batt_totalvol_alm_state;
    }
 
    public void setCustom_alm_count(int custom_alm_count) {
        this.custom_alm_count = custom_alm_count;
    }
 
    public void setJunheng_event_code(int junheng_event_code) {
        this.junheng_event_code = junheng_event_code;
    }
 
    public void setVol_event_code(int vol_event_code) {
        this.vol_event_code = vol_event_code;
    }
 
    public void setTmp_event_code(int tmp_event_code) {
        this.tmp_event_code = tmp_event_code;
    }
 
    public void setCurr_event_code(int curr_event_code) {
        this.curr_event_code = curr_event_code;
    }
 
    public void setFet_state_code(int fet_state_code) {
        this.fet_state_code = fet_state_code;
    }
 
    public void setJunheng_state_code(int junheng_state_code) {
        this.junheng_state_code = junheng_state_code;
    }
 
    public void setSys_state_code(int sys_state_code) {
        this.sys_state_code = sys_state_code;
    }
}