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