|
@@ -184,20 +184,17 @@
|
|
|
where tether_id = #{tetherId}
|
|
|
</update>
|
|
|
|
|
|
-<!-- 逻辑删除-->
|
|
|
- <update id="removePoTetherByTetherIdsWithCollection">
|
|
|
- update po_tether set del_flag = '1'
|
|
|
- </update>
|
|
|
|
|
|
<delete id="deletePoTetherByTetherId" parameterType="Long">
|
|
|
delete from po_tether where tether_id = #{tetherId}
|
|
|
</delete>
|
|
|
|
|
|
- <delete id="deletePoTetherByTetherIds" parameterType="String">
|
|
|
- delete from po_tether where tether_id in
|
|
|
+<!-- 逻辑删除接口-->
|
|
|
+ <update id="deletePoTetherByTetherIds" parameterType="String">
|
|
|
+ update po_tether set del_flag = '1' where tether_id in
|
|
|
<foreach item="tetherId" collection="array" open="(" separator="," close=")">
|
|
|
#{tetherId}
|
|
|
</foreach>
|
|
|
- </delete>
|
|
|
+ </update>
|
|
|
</mapper>
|
|
|
|