fix 修复 三方登录查询用户信息参数错误问题

This commit is contained in:
疯狂的狮子Li
2023-07-31 17:16:43 +08:00
parent 7888b0e857
commit d2f61fc241
3 changed files with 30 additions and 1 deletions

View File

@@ -21,6 +21,15 @@ public interface RemoteUserService {
*/
LoginUser getUserInfo(String username, String tenantId) throws UserException;
/**
* 通过用户id查询用户信息
*
* @param userId 用户id
* @param tenantId 租户id
* @return 结果
*/
LoginUser getUserInfo(Long userId, String tenantId) throws UserException;
/**
* 通过手机号查询用户信息
*