兴安优化车辆包兼容

This commit is contained in:
zc
2025-12-16 09:38:31 +08:00
parent 55de6e5446
commit 865f90ca2a
20 changed files with 373 additions and 138 deletions

View File

@@ -21,6 +21,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
<if test="equipmentId != null "> and equipment_id = #{equipmentId}</if>
<if test="parkId != null "> and park_id = #{parkId}</if>
<if test="parkIds != null and parkIds.size() > 0"> and park_id in
<foreach item="id" collection="parkIds" open="(" separator="," close=")">
#{id}
</foreach>
</if>
<if test="way != null and way != ''"> and way = #{way}</if>
</where>
</select>