1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-10-10 01:35:14 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

第三方账号取消授权功能完成

This commit is contained in:
2022-04-04 23:23:41 +08:00
parent 7cca39d2de
commit 3986458622
7 changed files with 94 additions and 1 deletions

View File

@@ -112,4 +112,10 @@
from third_party_user_auth_relation
where user_id = #{userId,jdbcType=INTEGER}
</select>
<delete id="deleteByUserIdAndThirdPartyUserId" parameterType="java.lang.Integer">
delete from third_party_user_auth_relation
where user_id = #{userId,jdbcType=INTEGER}
and third_party_user_id = #{thirdPartyUserId,jdbcType=INTEGER}
limit 1
</delete>
</mapper>