mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
27 lines
611 B
TypeScript
27 lines
611 B
TypeScript
import {Column, Entity, Index, OneToMany, PrimaryGeneratedColumn, Unique} from 'typeorm';
|
|
import {FaceRegionEntry} from './FaceRegionEntry';
|
|
import {PersonDTO} from '../../../../common/entities/PersonDTO';
|
|
|
|
|
|
@Entity()
|
|
@Unique(['name'])
|
|
export class PersonEntry implements PersonDTO {
|
|
@Index()
|
|
@PrimaryGeneratedColumn({unsigned: true})
|
|
id: number;
|
|
|
|
@Column()
|
|
name: string;
|
|
|
|
@Column('int', {unsigned: true, default: 0})
|
|
count: number;
|
|
|
|
@Column({default: false})
|
|
isFavourite: boolean;
|
|
|
|
@OneToMany(type => FaceRegionEntry, faceRegion => faceRegion.person)
|
|
public faces: FaceRegionEntry[];
|
|
|
|
|
|
}
|