package com.dec.model;
|
|
import java.io.Serializable;
|
|
public class Db_rtstateModel implements Serializable {
|
private int num;
|
private int batt_count;
|
private String rec_datetime;
|
private float online_vol;
|
private float group_vol;
|
private float froup_tmp;
|
private float group_curr;
|
private float batt_state;
|
private int batt_test_type;
|
private String batt_test_starttime;
|
private String batt_test_recordtime;
|
private int batt_test_tlong;
|
private float batt_test_cap;
|
private float batt_real_cap;
|
private float batt_rest_cap;
|
private int batt_rest_power1_time;
|
private int batt_rest_power2_time;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public int getBatt_count() {
|
return batt_count;
|
}
|
public void setBatt_count(int batt_count) {
|
this.batt_count = batt_count;
|
}
|
public String getRec_datetime() {
|
return rec_datetime;
|
}
|
public void setRec_datetime(String rec_datetime) {
|
this.rec_datetime = rec_datetime;
|
}
|
public float getOnline_vol() {
|
return online_vol;
|
}
|
public void setOnline_vol(float online_vol) {
|
this.online_vol = online_vol;
|
}
|
public float getGroup_vol() {
|
return group_vol;
|
}
|
public void setGroup_vol(float group_vol) {
|
this.group_vol = group_vol;
|
}
|
public float getFroup_tmp() {
|
return froup_tmp;
|
}
|
public void setFroup_tmp(float froup_tmp) {
|
this.froup_tmp = froup_tmp;
|
}
|
public float getGroup_curr() {
|
return group_curr;
|
}
|
public void setGroup_curr(float group_curr) {
|
this.group_curr = group_curr;
|
}
|
public float getBatt_state() {
|
return batt_state;
|
}
|
public void setBatt_state(float batt_state) {
|
this.batt_state = batt_state;
|
}
|
public int getBatt_test_type() {
|
return batt_test_type;
|
}
|
public void setBatt_test_type(int batt_test_type) {
|
this.batt_test_type = batt_test_type;
|
}
|
public String getBatt_test_starttime() {
|
return batt_test_starttime;
|
}
|
public void setBatt_test_starttime(String batt_test_starttime) {
|
this.batt_test_starttime = batt_test_starttime;
|
}
|
public String getBatt_test_recordtime() {
|
return batt_test_recordtime;
|
}
|
public void setBatt_test_recordtime(String batt_test_recordtime) {
|
this.batt_test_recordtime = batt_test_recordtime;
|
}
|
public int getBatt_test_tlong() {
|
return batt_test_tlong;
|
}
|
public void setBatt_test_tlong(int batt_test_tlong) {
|
this.batt_test_tlong = batt_test_tlong;
|
}
|
public float getBatt_test_cap() {
|
return batt_test_cap;
|
}
|
public void setBatt_test_cap(float batt_test_cap) {
|
this.batt_test_cap = batt_test_cap;
|
}
|
public float getBatt_real_cap() {
|
return batt_real_cap;
|
}
|
public void setBatt_real_cap(float batt_real_cap) {
|
this.batt_real_cap = batt_real_cap;
|
}
|
public float getBatt_rest_cap() {
|
return batt_rest_cap;
|
}
|
public void setBatt_rest_cap(float batt_rest_cap) {
|
this.batt_rest_cap = batt_rest_cap;
|
}
|
public int getBatt_rest_power1_time() {
|
return batt_rest_power1_time;
|
}
|
public void setBatt_rest_power1_time(int batt_rest_power1_time) {
|
this.batt_rest_power1_time = batt_rest_power1_time;
|
}
|
public int getBatt_rest_power2_time() {
|
return batt_rest_power2_time;
|
}
|
public void setBatt_rest_power2_time(int batt_rest_power2_time) {
|
this.batt_rest_power2_time = batt_rest_power2_time;
|
}
|
@Override
|
public String toString() {
|
return "Db_rtstateModel [num=" + num + ", batt_count=" + batt_count
|
+ ", rec_datetime=" + rec_datetime + ", online_vol="
|
+ online_vol + ", group_vol=" + group_vol + ", froup_tmp="
|
+ froup_tmp + ", group_curr=" + group_curr + ", batt_state="
|
+ batt_state + ", batt_test_type=" + batt_test_type
|
+ ", batt_test_starttime=" + batt_test_starttime
|
+ ", batt_test_recordtime=" + batt_test_recordtime
|
+ ", batt_test_tlong=" + batt_test_tlong + ", batt_test_cap="
|
+ batt_test_cap + ", batt_real_cap=" + batt_real_cap
|
+ ", batt_rest_cap=" + batt_rest_cap
|
+ ", batt_rest_power1_time=" + batt_rest_power1_time
|
+ ", batt_rest_power2_time=" + batt_rest_power2_time + "]";
|
}
|
|
}
|