feat(bookings): add internal remark field to bookings

Add a remark column to the bookings table for management-only notes.
Include UI to view and edit remarks directly from the bookings list.
Create API endpoint and database queries to support remark updates.
This commit is contained in:
2026-05-04 11:59:41 +08:00
parent 3f7025c8e4
commit 30753fdc61
6 changed files with 256 additions and 2 deletions

View File

@@ -55,6 +55,7 @@ export interface PublicBooking {
personInChargeId: string
personInChargeName: string
personInChargePhoneNumber: string
remark: string | null
status: BookingStatus
statusLabel: string
createdAt: string