From a296c6bfa83cd0a4bbc92d93c015a010248e8455 Mon Sep 17 00:00:00 2001 From: wanglizhong <wlz> Date: 星期六, 03 五月 2025 19:49:45 +0800 Subject: [PATCH] feat:增加gps显示 --- 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