package model type Warehouse struct { TenantBase Name string `gorm:"size:100;not null" json:"name"` Location string `gorm:"size:200" json:"location"` IsDefault bool `gorm:"default:false" json:"is_default"` CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"` }