|
@@ -278,16 +278,16 @@
|
|
|
where id = #{id}
|
|
where id = #{id}
|
|
|
</update>
|
|
</update>
|
|
|
|
|
|
|
|
- <update id="deleteFsCompanyCustomerById" parameterType="Long">
|
|
|
|
|
- update fs_company_customer set del_flag = '2' where id = #{id}
|
|
|
|
|
- </update>
|
|
|
|
|
|
|
+ <delete id="deleteFsCompanyCustomerById" parameterType="Long">
|
|
|
|
|
+ delete from fs_company_customer where id = #{id}
|
|
|
|
|
+ </delete>
|
|
|
|
|
|
|
|
- <update id="deleteFsCompanyCustomerByIds" parameterType="String">
|
|
|
|
|
- update fs_company_customer set del_flag = '2' where id in
|
|
|
|
|
|
|
+ <delete id="deleteFsCompanyCustomerByIds" parameterType="String">
|
|
|
|
|
+ delete from fs_company_customer where id in
|
|
|
<foreach collection="array" item="id" open="(" separator="," close=")">
|
|
<foreach collection="array" item="id" open="(" separator="," close=")">
|
|
|
#{id}
|
|
#{id}
|
|
|
</foreach>
|
|
</foreach>
|
|
|
- </update>
|
|
|
|
|
|
|
+ </delete>
|
|
|
|
|
|
|
|
<update id="updateCompanyUserIdByIds">
|
|
<update id="updateCompanyUserIdByIds">
|
|
|
update fs_company_customer
|
|
update fs_company_customer
|