From abb5cea60f5a0c8735febd9a5cca5f768114d370 Mon Sep 17 00:00:00 2001
From: zengh <123456>
Date: Fri, 09 Apr 2021 15:50:49 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/animalheat/mapper/AnimalHeatMapper.xml |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/animalheat/mapper/AnimalHeatMapper.xml b/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/animalheat/mapper/AnimalHeatMapper.xml
index f871bc3..ff9a139 100644
--- a/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/animalheat/mapper/AnimalHeatMapper.xml
+++ b/blade-service/blade-jfpts/src/main/java/org/springblade/jfpt/animalheat/mapper/AnimalHeatMapper.xml
@@ -48,6 +48,44 @@
         <if test="animalHeatVo.begTime!=null and animalHeatVo.begTime!='' and animalHeatVo.endTime!=null and animalHeatVo.endTime!='' ">
             and date(create_time) between #{animalHeatVo.begTime} and #{animalHeatVo.endTime}
         </if>
+        <if test="animalHeatVo.timeDesc!=null and animalHeatVo.timeDesc!=''">
+            <if test="animalHeatVo.timeDesc=='0-2'">
+                and hour(create_time)>=0 and hour(create_time) &lt;2
+            </if>
+            <if test="animalHeatVo.timeDesc=='2-4'">
+                and hour(create_time)>=2 and hour(create_time) &lt;4
+            </if>
+            <if test="animalHeatVo.timeDesc=='4-6'">
+                and hour(create_time)>=4 and hour(create_time) &lt;6
+            </if>
+            <if test="animalHeatVo.timeDesc=='6-8'">
+                and hour(create_time)>=6 and hour(create_time) &lt;8
+            </if>
+            <if test="animalHeatVo.timeDesc=='8-10'">
+                and hour(create_time)>=8 and hour(create_time) &lt;10
+            </if>
+            <if test="animalHeatVo.timeDesc=='10-12'">
+                and hour(create_time)>=10 and hour(create_time) &lt;12
+            </if>
+            <if test="animalHeatVo.timeDesc=='12-14'">
+                and hour(create_time)>=12 and hour(create_time) &lt;14
+            </if>
+            <if test="animalHeatVo.timeDesc=='14-16'">
+                and hour(create_time)>=14 and hour(create_time) &lt;16
+            </if>
+            <if test="animalHeatVo.timeDesc=='16-18'">
+                and hour(create_time)>=16 and hour(create_time) &lt;18
+            </if>
+            <if test="animalHeatVo.timeDesc=='18-20'">
+                and hour(create_time)>=18 and hour(create_time) &lt;20
+            </if>
+            <if test="animalHeatVo.timeDesc=='20-22'">
+                and hour(create_time)>=20 and hour(create_time) &lt;22
+            </if>
+            <if test="animalHeatVo.timeDesc=='22-24'">
+                and hour(create_time)>=22 and hour(create_time) &lt;24
+            </if>
+        </if>
         ORDER BY create_time desc
     </select>
 

--
Gitblit v1.9.3