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
|
|
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;
|
}
|
|
|
@Override
|
public String toString() {
|
return "BattMap_information [num=" + num + ", StationId=" + StationId
|
+ ", StationName=" + StationName + ", Address=" + Address
|
+ ", longitude=" + longitude + ", latitude=" + latitude
|
+ ", information=" + information + ", FBSDeviceId="
|
+ FBSDeviceId + "]";
|
}
|
|
|
|
}
|