From 40a8157440e3b906da8f52e07d939d78c3f4c313 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 12 四月 2026 16:14:06 +0800
Subject: [PATCH] feat: 任务增加统计、同步增加通知
---
ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml b/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml
index 984d7f1..df86c7f 100644
--- a/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/VehicleGpsMapper.xml
@@ -37,10 +37,10 @@
<if test="direction != null "> and direction = #{direction}</if>
<if test="collectTime != null "> and collect_time = #{collectTime}</if>
<if test="beginTime != null and beginTime != ''"><!-- 寮�濮嬫椂闂存绱� -->
- AND date_format(collect_time,'%y%m%d') >= date_format(#{beginTime},'%y%m%d')
+ AND collect_time >= #{beginTime}
</if>
<if test="endTime != null and endTime != ''"><!-- 缁撴潫鏃堕棿妫�绱� -->
- AND date_format(collect_time,'%y%m%d') <= date_format(#{endTime},'%y%m%d')
+ AND collect_time <= #{endTime}
</if>
</where>
order by collect_time desc
--
Gitblit v1.9.1