2016-12-27 16:09:47 +01:00
|
|
|
import {UserDTO, UserRoles} from "../../../../common/entities/UserDTO";
|
2017-07-03 19:17:49 +02:00
|
|
|
import {Column, Entity, PrimaryGeneratedColumn} from "typeorm";
|
2016-12-27 16:09:47 +01:00
|
|
|
|
2017-02-05 16:19:35 +01:00
|
|
|
@Entity()
|
2016-12-27 16:09:47 +01:00
|
|
|
export class UserEntity implements UserDTO {
|
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
@PrimaryGeneratedColumn()
|
|
|
|
id: number;
|
2016-12-27 16:09:47 +01:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
@Column({
|
|
|
|
length: 500
|
|
|
|
})
|
|
|
|
name: string;
|
2016-12-27 16:09:47 +01:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
@Column({
|
|
|
|
length: 500
|
|
|
|
})
|
|
|
|
password: string;
|
2016-12-27 16:09:47 +01:00
|
|
|
|
2017-07-03 19:17:49 +02:00
|
|
|
@Column("int")
|
|
|
|
role: UserRoles;
|
2016-12-27 16:09:47 +01:00
|
|
|
|
2017-07-07 22:54:18 +02:00
|
|
|
@Column("string", {nullable: true})
|
2017-07-03 19:17:49 +02:00
|
|
|
permissions: string[];
|
|
|
|
|
|
|
|
}
|