fix: Change role to toles for LoginResultModel (#3037)

This commit is contained in:
alixhome 2023-09-18 10:04:00 +08:00 committed by GitHub
parent 74a2f6209f
commit ce6b25d03b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ export interface RoleInfo {
export interface LoginResultModel { export interface LoginResultModel {
userId: string | number; userId: string | number;
token: string; token: string;
role: RoleInfo; roles: RoleInfo[];
} }
/** /**