1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/model/sql/enitites/SharingEntity.ts
2018-03-30 15:30:30 -04:00

32 lines
640 B
TypeScript

import {Column, Entity, ManyToOne, PrimaryGeneratedColumn} from 'typeorm';
import {SharingDTO} from '../../../../common/entities/SharingDTO';
import {UserEntity} from './UserEntity';
import {UserDTO} from '../../../../common/entities/UserDTO';
@Entity()
export class SharingEntity implements SharingDTO {
@PrimaryGeneratedColumn()
id: number;
@Column()
sharingKey: string;
@Column()
path: string;
@Column({type: 'text', nullable: true})
password: string;
@Column()
expires: number;
@Column()
timeStamp: number;
@Column()
includeSubfolders: boolean;
@ManyToOne(type => UserEntity)
creator: UserDTO;
}