package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class BattMap_information implements Serializable {
|
private Integer num;
|
private String StationId; //机房编号
|
private String StationName; //机房名称
|
private String Address; //机房物理信息
|
private Double longitude; // 经度
|
private Double latitude; // 纬度
|
private String information; //备注
|
private Integer FBSDeviceId; //设备id
|
private Page page;
|
private String stationName1;
|
private String stationName2;
|
private String stationName3;
|
private String stationName5;
|
private float monvolstd; //设备是2v还是12的电池
|
private String battmodel; //型号
|
private String battproducer; //品牌
|
private float load_curr; //负载电流
|
private int battGroupNum; //机房下电池组数
|
private int station_install; //机房安装状态
|
|
private String other;//额外保存
|
public BattMap_information() {
|
super();
|
|
}
|
|
|
public Integer getNum() {
|
return num;
|
}
|
|
|
public void setNum(Integer num) {
|
this.num = num;
|
}
|
|
|
public String getStationId() {
|
return StationId;
|
}
|
|
|
public void setStationId(String stationId) {
|
StationId = stationId;
|
}
|
|
|
public String getStationName() {
|
return StationName;
|
}
|
|
|
public void setStationName(String stationName) {
|
StationName = stationName;
|
}
|
|
|
public String getAddress() {
|
return Address;
|
}
|
|
|
public void setAddress(String address) {
|
Address = address;
|
}
|
|
public Double getLongitude() {
|
return longitude;
|
}
|
|
|
public void setLongitude(Double longitude) {
|
this.longitude = longitude;
|
}
|
|
|
public Double getLatitude() {
|
return latitude;
|
}
|
|
|
public void setLatitude(Double latitude) {
|
this.latitude = latitude;
|
}
|
|
|
public String getInformation() {
|
return information;
|
}
|
|
|
public void setInformation(String information) {
|
this.information = information;
|
}
|
|
|
public Integer getFBSDeviceId() {
|
return FBSDeviceId;
|
}
|
|
|
public void setFBSDeviceId(Integer fBSDeviceId) {
|
FBSDeviceId = fBSDeviceId;
|
}
|
|
|
public Page getPage() {
|
return page;
|
}
|
|
|
public void setPage(Page page) {
|
this.page = page;
|
}
|
|
|
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 String getStationName3() {
|
return stationName3;
|
}
|
|
|
public void setStationName3(String stationName3) {
|
this.stationName3 = stationName3;
|
}
|
|
|
public String getStationName5() {
|
return stationName5;
|
}
|
|
|
public void setStationName5(String stationName5) {
|
this.stationName5 = stationName5;
|
}
|
|
|
|
|
public float getMonvolstd() {
|
return monvolstd;
|
}
|
|
|
public void setMonvolstd(float monvolstd) {
|
this.monvolstd = monvolstd;
|
}
|
|
|
public String getBattmodel() {
|
return battmodel;
|
}
|
|
|
public void setBattmodel(String battmodel) {
|
this.battmodel = battmodel;
|
}
|
|
|
public String getBattproducer() {
|
return battproducer;
|
}
|
|
|
public void setBattproducer(String battproducer) {
|
this.battproducer = battproducer;
|
}
|
|
|
public float getLoad_curr() {
|
return load_curr;
|
}
|
|
|
public void setLoad_curr(float load_curr) {
|
this.load_curr = load_curr;
|
}
|
|
|
public String getOther() {
|
return other;
|
}
|
|
|
public void setOther(String other) {
|
this.other = other;
|
}
|
|
|
public int getBattGroupNum() {
|
return battGroupNum;
|
}
|
|
|
public void setBattGroupNum(int battGroupNum) {
|
this.battGroupNum = battGroupNum;
|
}
|
|
|
public int getStation_install() {
|
return station_install;
|
}
|
|
|
public void setStation_install(int station_install) {
|
this.station_install = station_install;
|
}
|
|
|
@Override
|
public String toString() {
|
return "BattMap_information [num=" + num + ", StationId=" + StationId
|
+ ", StationName=" + StationName + ", Address=" + Address
|
+ ", longitude=" + longitude + ", latitude=" + latitude
|
+ ", information=" + information + ", FBSDeviceId="
|
+ FBSDeviceId + ", page=" + page + ", stationName1="
|
+ stationName1 + ", stationName2=" + stationName2
|
+ ", stationName3=" + stationName3 + ", stationName5="
|
+ stationName5 + ", monvolstd=" + monvolstd + ", battmodel="
|
+ battmodel + ", battproducer=" + battproducer + ", load_curr="
|
+ load_curr + ", battGroupNum=" + battGroupNum
|
+ ", station_install=" + station_install + ", other=" + other
|
+ "]";
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|