package
Version:
v0.0.0-...-5fa07e8
Opens a new window with list of versions in this module.
Published: Aug 28, 2019
License: MIT
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Model struct {
ID uint `gorm:"primary_key" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt *time.Time `sql:"index" json:"deleted_at"`
}
type Reservation struct {
Model
ReservistID string `json:"reservist_id"`
RoomID uint `json:"room_id"`
Room Room `gorm:"PRELOAD:true" json:"room"`
From time.Time `json:"from"`
To time.Time `json:"to"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.