type Product struct {
ID uuid.UUID `gorm:"primaryKey"`
CreatedAt time.Time `gorm:"autoCreateTime"`
UpdatedAt time.Time `gorm:"autoUpdateTime"`
// name and merchant_id are composite keys Name string `gorm:"primaryKey"`
MerchantID uuid.UUID `gorm:"primaryKey"`
Qty int Price float32 Desc string}