feat: auth api【91e1ee7a】
This commit is contained in:
@@ -17,6 +17,7 @@ export namespace AuthApi {
|
||||
expiresTime: number;
|
||||
}
|
||||
|
||||
/** 刷新 token 返回值 */
|
||||
export interface RefreshTokenResult {
|
||||
data: string;
|
||||
status: number;
|
||||
@@ -28,6 +29,18 @@ export namespace AuthApi {
|
||||
name: string;
|
||||
}
|
||||
|
||||
/** 手机验证码获取接口参数 */
|
||||
export interface SmsCodeVO {
|
||||
mobile: string;
|
||||
scene: number;
|
||||
}
|
||||
|
||||
/** 手机验证码登录接口参数 */
|
||||
export interface SmsLoginVO {
|
||||
mobile: string;
|
||||
code: string;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/** 登录 */
|
||||
|
||||
Reference in New Issue
Block a user