UNPKG

642 BTypeScriptView Raw
1import { InfoItem } from "./info.item.entity";
2import { Organization } from "./organization.entity";
3import { Permission } from "./permission.entity";
4import { Role } from "./role.entity";
5import { Score } from "./score.entity";
6import { UserInfo } from "./user.info.entity";
7export declare class User {
8 id: number;
9 userName: string;
10 password: string;
11 salt: string;
12 status: boolean;
13 recycle: boolean;
14 userInfos: Array<UserInfo>;
15 scores: Array<Score>;
16 infoItems: Array<InfoItem>;
17 adds: Array<Permission>;
18 reduces: Array<Permission>;
19 roles: Array<Role>;
20 organizations: Array<Organization>;
21}