预炸申请导出

This commit is contained in:
shuo.wang
2025-07-03 15:56:51 +08:00
parent 8da905350f
commit 41b6179ecf
10 changed files with 118 additions and 5 deletions

View File

@@ -75,6 +75,15 @@
LEFT JOIN xfsg_line_info c ON c.partner_id = a.created_user_id
left join xfsg_shop_info d ON d.shop_code = a.store_code
<where>
<if test = "regionIds !=null and regionIds.size()>0">
and d.region_id in
<foreach item="item" index="index" collection="regionIds" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="investmentManagerId != null and investmentManagerId != ''">
and d.investment_manager = #{investmentManagerId}
</if>
<if test="applyCode !=null and applyCode != ''">
and a.apply_code LIKE CONCAT('%', #{applyCode}, '%')
</if>