mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 15:35:06 +08:00
member:优化部分变量的命名
This commit is contained in:
@ -14,12 +14,12 @@ public interface SocialClientApi {
|
||||
/**
|
||||
* 获得社交平台的授权 URL
|
||||
*
|
||||
* @param type 社交平台的类型 {@link SocialTypeEnum}
|
||||
* @param socialType 社交平台的类型 {@link SocialTypeEnum}
|
||||
* @param userType 用户类型
|
||||
* @param redirectUri 重定向 URL
|
||||
* @return 社交平台的授权 URL
|
||||
*/
|
||||
String getAuthorizeUrl(Integer type, Integer userType, String redirectUri);
|
||||
String getAuthorizeUrl(Integer socialType, Integer userType, String redirectUri);
|
||||
|
||||
/**
|
||||
* 创建微信公众号 JS SDK 初始化所需的签名
|
||||
|
@ -35,12 +35,12 @@ public interface SocialUserApi {
|
||||
* 在认证信息不正确的情况下,也会抛出 {@link ServiceException} 业务异常
|
||||
*
|
||||
* @param userType 用户类型
|
||||
* @param type 社交平台的类型
|
||||
* @param socialType 社交平台的类型
|
||||
* @param code 授权码
|
||||
* @param state state
|
||||
* @return 社交用户
|
||||
*/
|
||||
SocialUserRespDTO getSocialUser(Integer userType, Integer type,
|
||||
SocialUserRespDTO getSocialUser(Integer userType, Integer socialType,
|
||||
String code, String state);
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user