From 435f6e023163ccee35dda99e9c07c187c8f0b9c6 Mon Sep 17 00:00:00 2001
From: wzp <2040239371@qq.com>
Date: 星期四, 08 五月 2025 18:20:03 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 ruoyi-system/src/main/java/com/ruoyi/system/domain/GpsLoginResponse.java |   46 ++++++++++++++++++++++++++++++++++++++++++----
 1 files changed, 42 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..06df1d9 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;
+
     /**
      * 鏄惁鎴愬姛
      */
@@ -21,4 +27,36 @@
      * 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;
+    }
 } 
\ No newline at end of file

--
Gitblit v1.9.1