mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
23 lines
404 B
TypeScript
23 lines
404 B
TypeScript
|
import {UserDTO, UserRoles} from "../../../../common/entities/UserDTO";
|
||
|
import {Table, Column, PrimaryGeneratedColumn} from "typeorm";
|
||
|
|
||
|
@Table()
|
||
|
export class UserEntity implements UserDTO {
|
||
|
|
||
|
@PrimaryGeneratedColumn()
|
||
|
id: number;
|
||
|
|
||
|
@Column({
|
||
|
length: 500
|
||
|
})
|
||
|
name: string;
|
||
|
|
||
|
@Column({
|
||
|
length: 500
|
||
|
})
|
||
|
password: string;
|
||
|
|
||
|
@Column("int")
|
||
|
role: UserRoles;
|
||
|
|
||
|
}
|