mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-11 13:16:50 +00:00
20 lines
356 B
Go
20 lines
356 B
Go
package booking
|
|
|
|
import (
|
|
"time"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Booking struct {
|
|
gorm.Model
|
|
Id int
|
|
Name string `gorm:"column:customer_name"`
|
|
PhoneNumber string
|
|
CustomerNumber string `gorm:"column:customers"`
|
|
Email string
|
|
From time.Time
|
|
To time.Time
|
|
Platform string
|
|
PlatformFees string
|
|
}
|