From a8553f9ef7e165b6348243af91caad1a987f8f9c Mon Sep 17 00:00:00 2001 From: wzp <2040239371@qq.com> Date: 星期三, 03 九月 2025 17:49:52 +0800 Subject: [PATCH] fix: 修复轨迹查询报错问题。 更换了接口地址和增加请求参数 --- 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