whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
@Alias("BattMap_information")
public class BattMap_information implements Serializable {
    private Integer num;
    private String stationId;            //机房编号
    private String stationName;            //机房名称
    private String stationName3;            //站点名称
    private String address;                //机房物理信息
    private Double longitude;            // 经度
    private Double latitude;                // 纬度
    private String information;            //备注
    private Integer fbsDeviceId;        //设备id
    
    private String stationName1;            //省
    private String stationName2;            //市
    private String stationName5;            //区县
    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) {
        this.stationId = stationId;
    }
 
    public String getStationName() {
        return stationName;
    }
 
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
 
    public String getStationName3() {
        return stationName3;
    }
 
    public void setStationName3(String stationName3) {
        this.stationName3 = stationName3;
    }
 
    public String getAddress() {
        return address;
    }
 
    public void setAddress(String address) {
        this.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) {
        this.fbsDeviceId = fbsDeviceId;
    }
 
    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 getStationName5() {
        return stationName5;
    }
 
    public void setStationName5(String stationName5) {
        this.stationName5 = stationName5;
    }
 
    @Override
    public String toString() {
        return "BattMap_information{" +
                "num=" + num +
                ", stationId='" + stationId + '\'' +
                ", stationName='" + stationName + '\'' +
                ", stationName3='" + stationName3 + '\'' +
                ", address='" + address + '\'' +
                ", longitude=" + longitude +
                ", latitude=" + latitude +
                ", information='" + information + '\'' +
                ", fbsDeviceId=" + fbsDeviceId +
                ", stationName1='" + stationName1 + '\'' +
                ", stationName2='" + stationName2 + '\'' +
                ", stationName5='" + stationName5 + '\'' +
                '}';
    }
}