From 2eea735fd4ddf0ae047687780271ef3962d256cc Mon Sep 17 00:00:00 2001
From: 张世豪 <979909237@qq.com>
Date: 星期四, 25 十二月 2025 15:54:26 +0800
Subject: [PATCH] 替换了mqtt最新版
---
src/Mqttmessage/Entity/BasestationData.java | 44 ++++++++++++++++++++++++++++++++++++++++++--
1 files changed, 42 insertions(+), 2 deletions(-)
diff --git a/src/Mqttmessage/Entity/BasestationData.java b/src/Mqttmessage/Entity/BasestationData.java
index 058ec2c..2ac6596 100644
--- a/src/Mqttmessage/Entity/BasestationData.java
+++ b/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;
+ }
}
--
Gitblit v1.10.0