126 lines
3.0 KiB
Java
126 lines
3.0 KiB
Java
package com.aoleyun.sn.bean;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class BatteryInfo implements Serializable {
|
|
private static final long serialVersionUID = 7615775335930367771L;
|
|
|
|
String battery_quantity;
|
|
String battery_temperature;
|
|
String battery_voltage;
|
|
String charge_current;
|
|
String charge_voltage;
|
|
String battery_status;
|
|
String charge_type;
|
|
String charge_current_max;
|
|
String charge_voltage_max;
|
|
String battery_health;
|
|
String quantity_max;
|
|
String battery_desc;
|
|
String charge_speed;
|
|
|
|
public String getBattery_quantity() {
|
|
return battery_quantity;
|
|
}
|
|
|
|
public void setBattery_quantity(String battery_quantity) {
|
|
this.battery_quantity = battery_quantity;
|
|
}
|
|
|
|
public String getBattery_temperature() {
|
|
return battery_temperature;
|
|
}
|
|
|
|
public void setBattery_temperature(String battery_temperature) {
|
|
this.battery_temperature = battery_temperature;
|
|
}
|
|
|
|
public String getBattery_voltage() {
|
|
return battery_voltage;
|
|
}
|
|
|
|
public void setBattery_voltage(String battery_voltage) {
|
|
this.battery_voltage = battery_voltage;
|
|
}
|
|
|
|
public String getCharge_current() {
|
|
return charge_current;
|
|
}
|
|
|
|
public void setCharge_current(String charge_current) {
|
|
this.charge_current = charge_current;
|
|
}
|
|
|
|
public String getCharge_voltage() {
|
|
return charge_voltage;
|
|
}
|
|
|
|
public void setCharge_voltage(String charge_voltage) {
|
|
this.charge_voltage = charge_voltage;
|
|
}
|
|
|
|
public String getBattery_status() {
|
|
return battery_status;
|
|
}
|
|
|
|
public void setBattery_status(String battery_status) {
|
|
this.battery_status = battery_status;
|
|
}
|
|
|
|
public String getCharge_type() {
|
|
return charge_type;
|
|
}
|
|
|
|
public void setCharge_type(String charge_type) {
|
|
this.charge_type = charge_type;
|
|
}
|
|
|
|
public String getCharge_current_max() {
|
|
return charge_current_max;
|
|
}
|
|
|
|
public void setCharge_current_max(String charge_current_max) {
|
|
this.charge_current_max = charge_current_max;
|
|
}
|
|
|
|
public String getCharge_voltage_max() {
|
|
return charge_voltage_max;
|
|
}
|
|
|
|
public void setCharge_voltage_max(String charge_voltage_max) {
|
|
this.charge_voltage_max = charge_voltage_max;
|
|
}
|
|
|
|
public String getBattery_health() {
|
|
return battery_health;
|
|
}
|
|
|
|
public void setBattery_health(String battery_health) {
|
|
this.battery_health = battery_health;
|
|
}
|
|
|
|
public String getQuantity_max() {
|
|
return quantity_max;
|
|
}
|
|
|
|
public void setQuantity_max(String quantity_max) {
|
|
this.quantity_max = quantity_max;
|
|
}
|
|
|
|
public String getBattery_desc() {
|
|
return battery_desc;
|
|
}
|
|
|
|
public void setBattery_desc(String battery_desc) {
|
|
this.battery_desc = battery_desc;
|
|
}
|
|
|
|
public String getCharge_speed() {
|
|
return charge_speed;
|
|
}
|
|
|
|
public void setCharge_speed(String charge_speed) {
|
|
this.charge_speed = charge_speed;
|
|
}
|
|
}
|