feat: auth api【91e1ee7a】

pull/62/head
YunaiV 2025-03-24 21:35:59 +08:00
parent bb63de3f15
commit 73a5cb8e37
1 changed files with 13 additions and 0 deletions

View File

@ -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;
}
}
/** 登录 */