UNIVPLMDataIntegration/GoView/src/api/path/system.d.ts
2025-03-10 09:23:27 +08:00

27 lines
330 B
TypeScript

export interface LoginResult {
token: {
/**
* token 值
*/
tokenValue: string
/**
* token key
*/
tokenName: string
}
userinfo: {
/**
* 昵称
*/
nickname: string
/**
* 用户名
*/
username: string
/**
* 用户 id
*/
id: string
}
}