‘linchangsheng’ 6 days ago
parent
commit
9edc338db6
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/main/resources/mapper/CustomGoodsApplyMapper.xml

+ 6 - 0
src/main/resources/mapper/CustomGoodsApplyMapper.xml

@@ -9,6 +9,12 @@
         FROM goods_apply a
         join goods b on a.goods_id= b.goods_id
         ${ex.query}
+        <if test="ex.companyIds != null and ex.companyIds.size > 0">
+            and a.company_id in
+            <foreach item="item" index="index" collection="ex.companyIds" open="(" separator="," close=")">
+                #{item}
+            </foreach>
+        </if>
         <if test="ex.orderBy == null or ex.orderBy ==''">
             ORDER BY a.create_time DESC
         </if>