package vo import "time" type ReTaskProduct struct { ProductID int64 `json:"product_id"` ProductName string `json:"product_name"` ProductType string `json:"product_type"` ProductPrice float64 `json:"product_price"` ProductDetail string `json:"product_detail"` CreatedAt time.Time `json:"created_at"` BrandName string `json:"brand_name"` PhotoUrl string `json:"photo_url"` }