Commit 31e9dcbd by guojuxing

商户策略修改

parent cc82f27f
......@@ -131,7 +131,7 @@
select store_field_id
from tab_store_field_region_rel
where status=1
<if test="null != list">
<if test="null != list and list.size() > 0">
and region_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
......@@ -143,7 +143,7 @@
<update id="deleteFetchByStoreFieldIds" >
update tab_store_field_region_rel set status = 0
where status=1
<if test="null != list">
<if test="null != list and list.size() > 0">
and store_field_id in
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment