rentease/internal/service/booking/payment.go

11 lines
249 B
Go

package booking
import "gorm.io/gorm"
type Payment struct {
gorm.Model
BookingID uint `gorm:"not null;index"`
Booking Booking `gorm:"foreignKey:BookingID;constraint:OnDelete:CASCADE"`
Amount float64
PaymentMethod string
}