You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
285 B
15 lines
285 B
/** 小程序登录 登录用户信息 */
|
|
export type LoginResult = {
|
|
/** 用户ID */
|
|
id: number
|
|
/** 头像 */
|
|
avatar: string
|
|
/** 账户名 */
|
|
account: string
|
|
/** 昵称 */
|
|
nickname?: string
|
|
/** 手机号 */
|
|
mobile: string
|
|
/** 登录凭证 */
|
|
token: string
|
|
}
|