package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class Batt_endurance implements Serializable{
|
private int num;
|
private int deviceId;
|
private String stationid;
|
private int endurance_state;
|
private float real_cap;
|
private float moncapstd;
|
private float real_curr;
|
private int endurance_timelong;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public int getDeviceId() {
|
return deviceId;
|
}
|
public void setDeviceId(int deviceId) {
|
this.deviceId = deviceId;
|
}
|
public String getStationid() {
|
return stationid;
|
}
|
public void setStationid(String stationid) {
|
this.stationid = stationid;
|
}
|
public int getEndurance_state() {
|
return endurance_state;
|
}
|
public void setEndurance_state(int endurance_state) {
|
this.endurance_state = endurance_state;
|
}
|
public float getReal_cap() {
|
return real_cap;
|
}
|
public void setReal_cap(float real_cap) {
|
this.real_cap = real_cap;
|
}
|
public float getMoncapstd() {
|
return moncapstd;
|
}
|
public void setMoncapstd(float moncapstd) {
|
this.moncapstd = moncapstd;
|
}
|
public float getReal_curr() {
|
return real_curr;
|
}
|
public void setReal_curr(float real_curr) {
|
this.real_curr = real_curr;
|
}
|
public int getEndurance_timelong() {
|
return endurance_timelong;
|
}
|
public void setEndurance_timelong(int endurance_timelong) {
|
this.endurance_timelong = endurance_timelong;
|
}
|
@Override
|
public String toString() {
|
return "Batt_endurance [num=" + num + ", deviceId=" + deviceId
|
+ ", stationid=" + stationid + ", endurance_state="
|
+ endurance_state + ", real_cap=" + real_cap + ", moncapstd="
|
+ moncapstd + ", real_curr=" + real_curr
|
+ ", endurance_timelong=" + endurance_timelong + "]";
|
}
|
|
|
|
}
|