refactor(entity): 将可选字段明确标记为可选类型

This commit is contained in:
zhuotianyuan 2026-01-06 19:00:02 +08:00
parent 87ca4eadce
commit 5261011daa
1 changed files with 0 additions and 3 deletions

View File

@ -16,9 +16,6 @@ export class Site {
@Column({ name: 'webhook_url', length: 255, nullable: true }) @Column({ name: 'webhook_url', length: 255, nullable: true })
webhookUrl?: string; webhookUrl?: string;
@Column({ name: 'webhook_url', length: 255, nullable: true })
webhookUrl: string;
@Column({ length: 255, nullable: true }) @Column({ length: 255, nullable: true })
consumerKey?: string; consumerKey?: string;