1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +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

@@ -68,4 +68,13 @@ public interface ThirdPartyUserAuthDOMapper {
* @mbg.generated
*/
ThirdPartyUserAuthDO selectByUserId(Integer id);
/**
* 通过 用户 id 和 第三方用户 id 删除绑定关系
*
* @param userId
* @param thirdPartyUserId
* @return
*/
Integer deleteByUserIdAndThirdPartyUserId(Integer userId, Integer thirdPartyUserId);
}