Browse Source

fix: path not fond

master
wangxiang 2 years ago
parent
commit
7ed1333a65
No known key found for this signature in database
GPG Key ID: 1BA7946AB6B232E4
  1. 28
      src/api/common/base/entity/index.ts

28
src/api/common/base/entity/index.ts

@ -8,17 +8,33 @@ @@ -8,17 +8,33 @@
/** 扩展安全框架用户信息 */
export interface KiccUser {
id: string;
username: string;
password: string;
deptId: string;
phone: string;
enabled: boolean;
tenantId: string;
authorities: Recordable[];
accountNonLocked: boolean;
accountNonExpired: 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;
}

Loading…
Cancel
Save