From d294abb765e4ed349907c92ce313689c6299ba7d Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期二, 02 十二月 2025 00:17:00 +0800
Subject: [PATCH] feat:地图都改为天地图的接口
---
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/GpsConfigServiceImpl.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/GpsConfigServiceImpl.java b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/GpsConfigServiceImpl.java
index f5c2f16..a3e1b85 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/GpsConfigServiceImpl.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/service/impl/GpsConfigServiceImpl.java
@@ -77,10 +77,11 @@
}
@Override
- public int updateToken(String configKey, String token, Date expireTime) {
+ public int updateToken(String configKey, String token,Integer serviceid, Date expireTime) {
SysGpsConfig config = new SysGpsConfig();
config.setConfigKey(configKey);
config.setToken(token);
+ config.setServerid(serviceid);
config.setTokenExpireTime(expireTime);
config.setUpdateTime(new Date());
--
Gitblit v1.9.1