modes of transport

This commit is contained in:
androidlover5842
2026-01-24 22:39:45 +05:30
parent 6b6d84e40a
commit 72d9f5bb12
11 changed files with 309 additions and 10 deletions

View File

@@ -52,6 +52,13 @@ class Booking(
@Column(name = "email_audit_pdf_url")
var emailAuditPdfUrl: String? = null,
@Enumerated(EnumType.STRING)
@Column(name = "transport_mode")
var transportMode: TransportMode? = null,
@Column(name = "transport_vehicle_number")
var transportVehicleNumber: String? = null,
var notes: String? = null,
@ManyToOne(fetch = FetchType.LAZY)