mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
27 lines
330 B
TypeScript
27 lines
330 B
TypeScript
export interface LoginResult {
|
|
token: {
|
|
/**
|
|
* token 值
|
|
*/
|
|
tokenValue: string
|
|
/**
|
|
* token key
|
|
*/
|
|
tokenName: string
|
|
}
|
|
userinfo: {
|
|
/**
|
|
* 昵称
|
|
*/
|
|
nickname: string
|
|
/**
|
|
* 用户名
|
|
*/
|
|
username: string
|
|
/**
|
|
* 用户 id
|
|
*/
|
|
id: string
|
|
}
|
|
}
|