张世豪
13 小时以前 2eea735fd4ddf0ae047687780271ef3962d256cc
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
package Mqttmessage.Entity;
 
 
 
 
 
public class BasestationData {
 
    private String latitude_dm;
    private String latitude_hemisphere;
    private String longitude_dm;
    private String longitude_hemisphere;
    private double altitude;
 
 
    public BasestationData(String latitude_dm, String latitude_hemisphere,
                           String longitude_dm, String longitude_hemisphere,
                           double altitude) {
        this.latitude_dm = latitude_dm;
        this.latitude_hemisphere = latitude_hemisphere;
        this.longitude_dm = longitude_dm;
        this.longitude_hemisphere = longitude_hemisphere;
        this.altitude = altitude;
    }
 
    public String getLatitude_dm() {
        return latitude_dm;
    }
 
    public void setLatitude_dm(String latitude_dm) {
        this.latitude_dm = latitude_dm;
    }
 
    public String getLatitude_hemisphere() {
        return latitude_hemisphere;
    }
 
    public void setLatitude_hemisphere(String latitude_hemisphere) {
        this.latitude_hemisphere = latitude_hemisphere;
    }
 
    public String getLongitude_dm() {
        return longitude_dm;
    }
 
    public void setLongitude_dm(String longitude_dm) {
        this.longitude_dm = longitude_dm;
    }
 
    public String getLongitude_hemisphere() {
        return longitude_hemisphere;
    }
 
    public void setLongitude_hemisphere(String longitude_hemisphere) {
        this.longitude_hemisphere = longitude_hemisphere;
    }
 
    public double getAltitude() {
        return altitude;
    }
 
    public void setAltitude(double altitude) {
        this.altitude = altitude;
    }
}