From b5b16a26de0d84d7b5fb69b584377bdc3582e3ab Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 21 九月 2025 20:43:08 +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