package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class Batt_endurance implements Serializable{
|
private int num;
|
private int deviceId;
|
private String stationid;
|
private float real_cap;
|
private float moncapstd;
|
private float real_curr;
|
private int endurance_theory_timelong;//理论
|
private int endurance_actual_timelong;//实际
|
private int is_out_stand;
|
private String note;
|
private String stationName;
|
private String stationName1;//省级
|
private String stationName2;//市级
|
private String stationName5;//区县
|
private Page page;//分页
|
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 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_theory_timelong() {
|
return endurance_theory_timelong;
|
}
|
public void setEndurance_theory_timelong(int endurance_theory_timelong) {
|
this.endurance_theory_timelong = endurance_theory_timelong;
|
}
|
public int getEndurance_actual_timelong() {
|
return endurance_actual_timelong;
|
}
|
public void setEndurance_actual_timelong(int endurance_actual_timelong) {
|
this.endurance_actual_timelong = endurance_actual_timelong;
|
}
|
public int getIs_out_stand() {
|
return is_out_stand;
|
}
|
public void setIs_out_stand(int is_out_stand) {
|
this.is_out_stand = is_out_stand;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
public String getStationName() {
|
return stationName;
|
}
|
public void setStationName(String stationName) {
|
this.stationName = stationName;
|
}
|
public String getStationName1() {
|
return stationName1;
|
}
|
public void setStationName1(String stationName1) {
|
this.stationName1 = stationName1;
|
}
|
public String getStationName2() {
|
return stationName2;
|
}
|
public void setStationName2(String stationName2) {
|
this.stationName2 = stationName2;
|
}
|
public Page getPage() {
|
return page;
|
}
|
public void setPage(Page page) {
|
this.page = page;
|
}
|
public String getStationName5() {
|
return stationName5;
|
}
|
public void setStationName5(String stationName5) {
|
this.stationName5 = stationName5;
|
}
|
@Override
|
public String toString() {
|
return "Batt_endurance [num=" + num + ", deviceId=" + deviceId
|
+ ", stationid=" + stationid + ", real_cap=" + real_cap
|
+ ", moncapstd=" + moncapstd + ", real_curr=" + real_curr
|
+ ", endurance_theory_timelong=" + endurance_theory_timelong
|
+ ", endurance_actual_timelong=" + endurance_actual_timelong
|
+ ", is_out_stand=" + is_out_stand + ", note=" + note
|
+ ", stationName=" + stationName + ", stationName1="
|
+ stationName1 + ", stationName2=" + stationName2
|
+ ", stationName5=" + stationName5 + ", page=" + page + "]";
|
}
|
|
|
|
}
|