张世豪
15 小时以前 2eea735fd4ddf0ae047687780271ef3962d256cc
src/Mqttmessage/Entity/BasestationData.java
@@ -1,9 +1,9 @@
package Mqttmessage.Entity;
import lombok.Data;
@Data
public class BasestationData {
    private String latitude_dm;
@@ -22,4 +22,44 @@
        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;
    }
}