package model type Shop 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"` ManagerName string `gorm:"size:50" json:"manager_name"` 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"` }