1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00
2017-02-05 16:19:35 +01:00

23 lines
406 B
TypeScript

import {UserDTO, UserRoles} from "../../../../common/entities/UserDTO";
import {Entity, Column, PrimaryGeneratedColumn} from "typeorm";
@Entity()
export class UserEntity implements UserDTO {
@PrimaryGeneratedColumn()
id: number;
@Column({
length: 500
})
name: string;
@Column({
length: 500
})
password: string;
@Column("int")
role: UserRoles;
}