Sharkey/packages/backend/src/models/entities/Ad.ts

66 lines
1.2 KiB
TypeScript
Raw Normal View History

import { Entity, Index, Column, PrimaryColumn } from 'typeorm';
import { id } from '../id.js';
@Entity()
export class Ad {
@PrimaryColumn(id())
public id: string;
@Index()
@Column('timestamp with time zone', {
2021-12-09 16:58:30 +02:00
comment: 'The created date of the Ad.',
})
public createdAt: Date;
@Index()
@Column('timestamp with time zone', {
2021-12-09 16:58:30 +02:00
comment: 'The expired date of the Ad.',
})
public expiresAt: Date;
@Index()
@Column('timestamp with time zone', {
comment: 'The expired date of the Ad.',
})
2023-02-15 07:31:59 +02:00
public startsAt: Date;
@Column('varchar', {
2021-12-09 16:58:30 +02:00
length: 32, nullable: false,
})
public place: string;
2021-05-07 08:22:13 +03:00
// 今は使われていないが将来的に活用される可能性はある
@Column('varchar', {
2021-12-09 16:58:30 +02:00
length: 32, nullable: false,
})
public priority: string;
2021-05-07 08:22:13 +03:00
@Column('integer', {
2021-12-09 16:58:30 +02:00
default: 1, nullable: false,
2021-05-07 08:22:13 +03:00
})
public ratio: number;
@Column('varchar', {
2021-12-09 16:58:30 +02:00
length: 1024, nullable: false,
})
public url: string;
@Column('varchar', {
2021-12-09 16:58:30 +02:00
length: 1024, nullable: false,
})
public imageUrl: string;
@Column('varchar', {
2021-12-09 16:58:30 +02:00
length: 8192, nullable: false,
})
public memo: string;
constructor(data: Partial<Ad>) {
if (data == null) return;
for (const [k, v] of Object.entries(data)) {
(this as any)[k] = v;
}
}
}