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;
|
}
|
}
|