|
|
@ -8,17 +8,33 @@ |
|
|
|
|
|
|
|
|
|
|
|
/** 扩展安全框架用户信息 */ |
|
|
|
/** 扩展安全框架用户信息 */ |
|
|
|
export interface KiccUser { |
|
|
|
export interface KiccUser { |
|
|
|
id: string; |
|
|
|
|
|
|
|
username: string; |
|
|
|
username: string; |
|
|
|
password: string; |
|
|
|
password: string; |
|
|
|
deptId: string; |
|
|
|
|
|
|
|
phone: string; |
|
|
|
|
|
|
|
enabled: boolean; |
|
|
|
enabled: boolean; |
|
|
|
tenantId: string; |
|
|
|
|
|
|
|
authorities: Recordable[]; |
|
|
|
|
|
|
|
accountNonLocked: boolean; |
|
|
|
|
|
|
|
accountNonExpired: boolean; |
|
|
|
accountNonExpired: boolean; |
|
|
|
credentialsNonExpired: boolean; |
|
|
|
credentialsNonExpired: boolean; |
|
|
|
|
|
|
|
accountNonLocked: boolean; |
|
|
|
|
|
|
|
authorities: Recordable[]; |
|
|
|
|
|
|
|
id: string; |
|
|
|
|
|
|
|
nickName: string; |
|
|
|
|
|
|
|
email: string; |
|
|
|
|
|
|
|
phone: string; |
|
|
|
|
|
|
|
sex: string; |
|
|
|
|
|
|
|
avatar: string; |
|
|
|
|
|
|
|
loginIp: string; |
|
|
|
|
|
|
|
loginTime: string; |
|
|
|
|
|
|
|
createById: string; |
|
|
|
|
|
|
|
createByName: string; |
|
|
|
|
|
|
|
createTime: string; |
|
|
|
|
|
|
|
updateById: string; |
|
|
|
|
|
|
|
updateByName: string; |
|
|
|
|
|
|
|
updateTime: string; |
|
|
|
|
|
|
|
remarks: string; |
|
|
|
|
|
|
|
tenantId: string; |
|
|
|
|
|
|
|
exPrincipals: { [key: string]: string }; |
|
|
|
|
|
|
|
deptId: string; |
|
|
|
|
|
|
|
userType: string; |
|
|
|
|
|
|
|
exPermissions: string[]; |
|
|
|
[key: string]: any; |
|
|
|
[key: string]: any; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|