
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
75 lines
1.4 KiB
TypeScript
75 lines
1.4 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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', {
|
|
comment: 'The created date of the Ad.',
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The expired date of the Ad.',
|
|
})
|
|
public expiresAt: Date;
|
|
|
|
@Index()
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The expired date of the Ad.',
|
|
default: () => 'now()',
|
|
})
|
|
public startsAt: Date;
|
|
|
|
@Column('varchar', {
|
|
length: 32, nullable: false,
|
|
})
|
|
public place: string;
|
|
|
|
// 今は使われていないが将来的に活用される可能性はある
|
|
@Column('varchar', {
|
|
length: 32, nullable: false,
|
|
})
|
|
public priority: string;
|
|
|
|
@Column('integer', {
|
|
default: 1, nullable: false,
|
|
})
|
|
public ratio: number;
|
|
|
|
@Column('varchar', {
|
|
length: 1024, nullable: false,
|
|
})
|
|
public url: string;
|
|
|
|
@Column('varchar', {
|
|
length: 1024, nullable: false,
|
|
})
|
|
public imageUrl: string;
|
|
|
|
@Column('varchar', {
|
|
length: 8192, nullable: false,
|
|
})
|
|
public memo: string;
|
|
@Column('integer', {
|
|
default: 0, nullable: false,
|
|
})
|
|
public dayOfWeek: number;
|
|
constructor(data: Partial<Ad>) {
|
|
if (data == null) return;
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
(this as any)[k] = v;
|
|
}
|
|
}
|
|
}
|