mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
32 lines
640 B
TypeScript
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;
|
|
}
|