package model import "time" type ProductImage struct { ID uint64 `gorm:"primaryKey;autoIncrement" json:"id"` ProductID uint64 `gorm:"not null;index" json:"product_id"` ShopID uint64 `gorm:"not null" json:"shop_id"` URL string `gorm:"size:500;not null" json:"url"` SortOrder int `gorm:"default:0" json:"sort_order"` CreatedAt time.Time `json:"created_at"` }