增加筛选条件 :预炸资质申请管理列表

This commit is contained in:
shuo.wang
2025-06-24 18:21:07 +08:00
parent 84574c905a
commit 5af71339b8
2 changed files with 5 additions and 0 deletions

View File

@@ -72,6 +72,9 @@
LEFT JOIN store_${enterpriseId} b ON a.store_code = b.store_num
LEFT JOIN xfsg_line_info c ON c.partner_id = a.created_user_id
<where>
<if test="applyCode !=null and applyCode != ''">
and a.apply_code LIKE CONCAT('%', #{applyCode}, '%')
</if>
<if test="storeCode != null and storeCode != ''">
AND a.store_code LIKE CONCAT('%', #{storeCode}, '%')
</if>