package model type Shop struct { Base Name string `gorm:"size:100;not null" json:"name"` Code string `gorm:"size:50;uniqueIndex" json:"code"` Description string `gorm:"type:text" json:"description"` Address string `gorm:"size:255" json:"address"` Phone string `gorm:"size:30" json:"phone"` BusinessHours string `gorm:"size:100" json:"business_hours"` ManagerName string `gorm:"size:50" json:"manager_name"` LogoURL string `gorm:"column:logo_url;size:500" json:"logo_url"` WechatID string `gorm:"size:100" json:"wechat_id"` BusinessLicense string `gorm:"size:500" json:"business_license"` ShopPhotos JSON `gorm:"type:json" json:"shop_photos,omitempty"` CustomFields JSON `gorm:"type:json" json:"custom_fields,omitempty"` }