| | |
| | | package Mqttmessage.Entity; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | |
| | | |
| | | public class BasestationData { |
| | | |
| | | private String latitude_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; |
| | | } |
| | | } |