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/SysGpsConfig.java |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysGpsConfig.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysGpsConfig.java
index 9073e84..573ee20 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysGpsConfig.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysGpsConfig.java
@@ -42,6 +42,10 @@
     @Excel(name = "鏈�鍚庢煡璇綅缃椂闂�")
     private Long lastquerypositiontime;
 
+    /** 鏈嶅姟鍣↖D */
+    @Excel(name = "鏈嶅姟鍣↖D")
+    private Integer serverid;
+
     public void setConfigId(Long configId) {
         this.configId = configId;
     }
@@ -106,6 +110,14 @@
         this.lastquerypositiontime = lastquerypositiontime;
     }
 
+    public Integer getServerid() {
+        return serverid;
+    }
+
+    public void setServerid(Integer serverid) {
+        this.serverid = serverid;
+    }
+
     @Override
     public String toString() {
         return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
@@ -117,6 +129,7 @@
                 .append("token", getToken())
                 .append("tokenExpireTime", getTokenExpireTime())
                 .append("lastquerypositiontime", getLastquerypositiontime())
+                .append("serverid", getServerid())
                 .append("createBy", getCreateBy())
                 .append("createTime", getCreateTime())
                 .append("updateBy", getUpdateBy())

--
Gitblit v1.9.1