From ef6a2fb3b547190f35b3baf99280eaead42b4f57 Mon Sep 17 00:00:00 2001
From: wzp <2040239371@qq.com>
Date: 星期五, 09 五月 2025 17:09:49 +0800
Subject: [PATCH] fix:y优化回调处理,和http请求超时处理

---
 ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml b/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml
index e4c2477..a1c00c3 100644
--- a/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml
@@ -37,7 +37,8 @@
             <if test="altitude != null "> and g.altitude = #{altitude}</if>
             <if test="speed != null "> and g.speed = #{speed}</if>
             <if test="direction != null "> and g.direction = #{direction}</if>
-            <if test="collectTime != null  and collectTime != ''"> and g.collect_time = #{collectTime}</if>
+            <if test="beginTime != null and beginTime != ''"> and g.collect_time &gt;= #{beginTime}</if>
+            <if test="endTime != null and endTime != ''"> and g.collect_time &lt;= #{endTime}</if>
         </where>
     </select>
     

--
Gitblit v1.9.1