From 225fa712204ccb8953998a0e4cc64ad828399dc3 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 22 二月 2022 15:52:16 +0800
Subject: [PATCH] 加入微信通知功能

---
 java110-db/src/main/resources/mapper/common/CarInoutDetailV1ServiceDaoImplMapper.xml |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/java110-db/src/main/resources/mapper/common/CarInoutDetailV1ServiceDaoImplMapper.xml b/java110-db/src/main/resources/mapper/common/CarInoutDetailV1ServiceDaoImplMapper.xml
index 9b74095..2c547e3 100644
--- a/java110-db/src/main/resources/mapper/common/CarInoutDetailV1ServiceDaoImplMapper.xml
+++ b/java110-db/src/main/resources/mapper/common/CarInoutDetailV1ServiceDaoImplMapper.xml
@@ -41,6 +41,12 @@
         <if test="paId !=null and paId != ''">
             and t.pa_id= #{paId}
         </if>
+        <if test="paIds !=null ">
+            and t.pa_id in
+            <foreach collection="paIds" item="item" index="index" open="(" close=")" separator=",">
+                #{item}
+            </foreach>
+        </if>
         <if test="detailId !=null and detailId != ''">
             and t.detail_id= #{detailId}
         </if>
@@ -117,6 +123,12 @@
         <if test="paId !=null and paId != ''">
             and t.pa_id= #{paId}
         </if>
+        <if test="paIds !=null ">
+            and t.pa_id in
+            <foreach collection="paIds" item="item" index="index" open="(" close=")" separator=",">
+                #{item}
+            </foreach>
+        </if>
         <if test="detailId !=null and detailId != ''">
             and t.detail_id= #{detailId}
         </if>

--
Gitblit v1.8.0