| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import {
- Column, CreateDateColumn, Entity, PrimaryGeneratedColumn, UpdateDateColumn, ManyToOne,
- } from 'typeorm';
- import { Installation } from './installation';
- @Entity()
- export class Order {
- @PrimaryGeneratedColumn()
- readonly id: number;
- @CreateDateColumn()
- readonly createdAt: Date;
- @UpdateDateColumn()
- readonly updatedAt: Date;
- @ManyToOne(() => Installation)
- readonly installation: Installation;
- @Column({ nullable: true, default: false })
- isCompleted?: boolean;
- @Column()
- growiUrl: string;
- @Column()
- tokenGtoP: string;
- @Column()
- tokenPtoG: string;
- isExpired():boolean {
- const now = Date.now();
- const expiredAt = this.createdAt.getTime() + 600000;
- return expiredAt < now;
- }
- }
|