From cddd83f139af1786517759277ced8479cbe80d3b Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期三, 19 二月 2020 12:57:09 +0800
Subject: [PATCH] Merge branch 'master' of https://github.com/java110/MicroCommunity

---
 java110-db/src/main/resources/mapper/community/InspectionRouteServiceDaoImplMapper.xml |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/community/InspectionRouteServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/community/InspectionRouteServiceDaoImplMapper.xml
index 11c4815..1598812 100644
--- a/java110-db/src/main/resources/mapper/community/InspectionRouteServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/community/InspectionRouteServiceDaoImplMapper.xml
@@ -113,6 +113,12 @@
         <if test="routeName !=null and routeName != ''">
             and t.Route_name= #{routeName}
         </if>
+        <if test="inspectionRouteIds !=null">
+            and t.inspection_route_Id in
+            <foreach collection="inspectionRouteIds" item="item" open="(" close=")" separator=",">
+                #{item}
+            </foreach>
+        </if>
         order by t.create_time desc
         <if test="page != -1 and page != null ">
             limit #{page}, #{row}

--
Gitblit v1.8.0