From 0aea8bd18daaaf91e622fdcfdd81dbb2e1b4860c Mon Sep 17 00:00:00 2001
From: swb <jpy123456>
Date: Mon, 21 Oct 2024 09:01:18 +0800
Subject: [PATCH] fix:立行立改责任主体修改提交

---
 screen-api/src/main/resources/mapper/SecondCruiserSortMapper.xml |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/screen-api/src/main/resources/mapper/SecondCruiserSortMapper.xml b/screen-api/src/main/resources/mapper/SecondCruiserSortMapper.xml
index 0a5526e..2186ac9 100644
--- a/screen-api/src/main/resources/mapper/SecondCruiserSortMapper.xml
+++ b/screen-api/src/main/resources/mapper/SecondCruiserSortMapper.xml
@@ -14,8 +14,8 @@
     <select id="getSort" resultType="com.moral.api.entity.SecondCruiserSort">
         select road,avg(value) as "avg",time,mac from second_cruiser_sort
         where mac =#{mac}
-        AND `time` <![CDATA[>]]> #{startTime}
-        AND `time` <![CDATA[<=]]> #{endTime}
+        AND `time` <![CDATA[>=]]> #{startTime}
+        AND `time` <![CDATA[<]]> #{endTime}
         GROUP BY road ORDER BY avg DESC
 
     </select>

--
Gitblit v1.8.0