update 后管查询订单列表增加车牌号筛选

This commit is contained in:
Lemon
2025-06-17 10:29:39 +08:00
parent ec61e0123a
commit 97fb52cd25
2 changed files with 5 additions and 2 deletions

View File

@@ -1828,6 +1828,9 @@
<if test="vinCode != null and vinCode != ''">
and t1.vin_code = #{vinCode,jdbcType=VARCHAR}
</if>
<if test="plateNumber != null and plateNumber != ''">
and t1.plate_number = #{plateNumber,jdbcType=VARCHAR}
</if>
<if test="stationDeptIds != null and stationDeptIds.size() != 0">
and t3.dept_id in
<foreach close=")" collection="stationDeptIds" item="stationDeptId" open="(" separator=",">