whyclj
2019-10-29 1c0469e45346d464e0c5672ee68f9ecd4fb6be7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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 + "]";
    }
 
    
    
}