新增 用户解绑鉴权卡接口

This commit is contained in:
Lemon
2023-03-20 17:02:30 +08:00
parent ba3bcb8e2f
commit e97ee74215
6 changed files with 64 additions and 2 deletions

View File

@@ -109,4 +109,11 @@
</if>
limit 1
</select>
<update id="unBindingCard">
update pile_auth_card
set status = '9', del_flag = '1'
where member_id = #{memberId,jdbcType=VARCHAR}
and logic_card = #{logicCard,jdbcType=VARCHAR}
</update>
</mapper>