联调修改

This commit is contained in:
liux 2025-04-16 11:19:06 +08:00
parent 35881c05f1
commit 7078e8d401
1 changed files with 3 additions and 3 deletions

View File

@ -90,19 +90,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where 1= 1
<if test="areaIds !=null">
<if test="areaIds !=null and areaIds.size()>0">
and t3.area_id in
<foreach collection="areaIds" open="(" close=")" item="item" separator=",">
#{item}
</foreach>
</if>
<if test="canteenIds !=null">
<if test="canteenIds !=null and canteenIds.size()>0">
and t2.canteen_id in
<foreach collection="canteenIds" open="(" close=")" item="item" separator=",">
#{item}
</foreach>
</if>
<if test="stallIds !=null">
<if test="stallIds !=null and stallIds.size()>0">
and t1.stall_id in
<foreach collection="stallIds" open="(" close=")" item="item" separator=",">
#{item}