package model type Hotel struct { Base Name string `gorm:"size:100;not null" json:"name"` Code string `gorm:"size:50;uniqueIndex" json:"code"` Address string `gorm:"size:255" json:"address"` Phone string `gorm:"size:30" json:"phone"` CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"` }