|
|
@ -79,15 +79,8 @@ public interface IUserClient { |
|
|
|
@GetMapping(USER_INFO_BY_ACCOUNT) |
|
|
|
@GetMapping(USER_INFO_BY_ACCOUNT) |
|
|
|
R<User> userByAccount(@RequestParam("tenantId") String tenantId, @RequestParam("account") String account); |
|
|
|
R<User> userByAccount(@RequestParam("tenantId") String tenantId, @RequestParam("account") String account); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 根据账号获取用户信息 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param tenantId 租户id |
|
|
|
|
|
|
|
* @param phone 账号 |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@GetMapping(USER_INFO_BY_PHONE) |
|
|
|
|
|
|
|
R<User> userInfoByPhone(@RequestParam("tenantId") String tenantId, @RequestParam("phone") String phone); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 获取用户信息 |
|
|
|
* 获取用户信息 |
|
|
@ -110,6 +103,16 @@ public interface IUserClient { |
|
|
|
@GetMapping(USER_INFO_BY_TYPE) |
|
|
|
@GetMapping(USER_INFO_BY_TYPE) |
|
|
|
R<UserInfo> userInfo(@RequestParam("tenantId") String tenantId, @RequestParam("account") String account, @RequestParam("userType") String userType); |
|
|
|
R<UserInfo> userInfo(@RequestParam("tenantId") String tenantId, @RequestParam("account") String account, @RequestParam("userType") String userType); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* 根据账号获取用户信息 |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param tenantId 租户id |
|
|
|
|
|
|
|
* @param phone 账号 |
|
|
|
|
|
|
|
* @return |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
@GetMapping(USER_INFO_BY_PHONE) |
|
|
|
|
|
|
|
R<User> userInfoByPhone(@RequestParam("tenantId") String tenantId, @RequestParam("phone") String phone); |
|
|
|
/** |
|
|
|
/** |
|
|
|
* 获取第三方平台信息 |
|
|
|
* 获取第三方平台信息 |
|
|
|
* |
|
|
|
* |
|
|
|