mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-17 00:08:35 +08:00
update 运营商改为逻辑删除
This commit is contained in:
@@ -280,14 +280,15 @@
|
|||||||
</update>
|
</update>
|
||||||
|
|
||||||
<delete id="deletePileMerchantInfoById" parameterType="Long">
|
<delete id="deletePileMerchantInfoById" parameterType="Long">
|
||||||
delete
|
update pile_merchant_info
|
||||||
from pile_merchant_info
|
set del_flag = '1'
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<delete id="deletePileMerchantInfoByIds" parameterType="String">
|
<delete id="deletePileMerchantInfoByIds" parameterType="String">
|
||||||
delete
|
update pile_merchant_info
|
||||||
from pile_merchant_info where id in
|
set del_flag = '1'
|
||||||
|
where id in
|
||||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||||
#{id}
|
#{id}
|
||||||
</foreach>
|
</foreach>
|
||||||
|
|||||||
Reference in New Issue
Block a user