feat:"完成页面接口的对接"

This commit is contained in:
2026-01-29 17:58:19 +08:00
parent 2774a539bf
commit 2b69da3c15
98 changed files with 9504 additions and 592 deletions

View File

@@ -10,11 +10,11 @@ export class Booking {
@Column({ length: 32, unique: true })
bookingNumber: string; // 预约编号
@ManyToOne(() => User)
@ManyToOne(() => User, { nullable: true })
@JoinColumn({ name: 'customerId' })
customer: User;
@Column()
@Column({ nullable: true })
customerId: number;
@ManyToOne(() => Service)