UNIVPLMDataIntegration/GoView/src/api/path/system.d.ts

27 lines
330 B
TypeScript
Raw Normal View History

2025-03-10 09:23:27 +08:00
export interface LoginResult {
token: {
/**
* token
*/
tokenValue: string
/**
* token key
*/
tokenName: string
}
userinfo: {
/**
*
*/
nickname: string
/**
*
*/
username: string
/**
* id
*/
id: string
}
}