From f67945d53b20f6a45ae50b27d74c966eb1355bb4 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 16 十一月 2025 22:53:54 +0800
Subject: [PATCH] feat: 增加分段GPS计算行程距离
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/GpsLoginResponse.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 48 insertions(+), 4 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/GpsLoginResponse.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/GpsLoginResponse.java
index 14c66b3..0ddd7fe 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/GpsLoginResponse.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/GpsLoginResponse.java
@@ -1,12 +1,18 @@
package com.ruoyi.system.domain;
-import lombok.Data;
+import java.io.Serializable;
/**
- * GPS鐧诲綍鍝嶅簲
+ * GPS鐧诲綍鍝嶅簲瀹炰綋绫�
*/
-@Data
-public class GpsLoginResponse {
+public class GpsLoginResponse implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 鐘舵�佺爜
+ */
+ private Integer status;
+
/**
* 鏄惁鎴愬姛
*/
@@ -16,9 +22,47 @@
* 娑堟伅
*/
private String message;
+
+ private Integer serverid;
/**
* Token
*/
private String token;
+
+ public Integer getStatus() {
+ return status;
+ }
+
+ public void setStatus(Integer status) {
+ this.status = status;
+ }
+
+ public boolean isSuccess() {
+ return success;
+ }
+
+ public void setSuccess(boolean success) {
+ this.success = success;
+ }
+
+ public String getMessage() {
+ return message;
+ }
+
+ public void setMessage(String message) {
+ this.message = message;
+ }
+
+ public String getToken() {
+ return token;
+ }
+
+ public void setToken(String token) {
+ this.token = token;
+ }
+
+
+ public void setServerid(Integer serviceid){this.serverid=serviceid;}
+ public Integer getServerid(){return this.serverid;}
}
\ No newline at end of file
--
Gitblit v1.9.1