|
|
@@ -461,11 +461,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</update>
|
|
|
|
|
|
<delete id="deleteFsStoreProductById" parameterType="Long">
|
|
|
- update fs_store_product_scrm set id_del = 1 where product_id = #{productId}
|
|
|
+ update fs_store_product_scrm set is_del = 1 where product_id = #{productId}
|
|
|
</delete>
|
|
|
|
|
|
<delete id="deleteFsStoreProductByIds" parameterType="String">
|
|
|
- update fs_store_product_scrm set id_del = 1 where product_id in
|
|
|
+ update fs_store_product_scrm set is_del = 1 where product_id in
|
|
|
<foreach item="productId" collection="array" open="(" separator="," close=")">
|
|
|
#{productId}
|
|
|
</foreach>
|