|
@@ -7,14 +7,14 @@ type FindProductRequest struct {
|
|
|
type ProductPhoto struct {
|
|
|
PhotoUrl string `json:"photo_url"` // 图片或视频url
|
|
|
PhotoUid string `json:"photo_uid"`
|
|
|
- Symbol int64 `json:"symbol"` // 图片为主图或详情图标志位,1为主图,2为详情图,3为视频
|
|
|
+ Symbol int64 `json:"symbol"` // 标志位,1为主图,2为轮播图,3为轮播图视频,4详情图,5详情图视频
|
|
|
}
|
|
|
|
|
|
type FindProductData struct {
|
|
|
ProductID int64 `json:"product_id"` // 商品ID
|
|
|
ProductName string `json:"product_name"` // 商品名称
|
|
|
ProductType int64 `json:"product_type"` // 商品类型
|
|
|
- ShopAddress string `json:"shop_address"` // 店铺地址,商品类型为线下品牌时需填写
|
|
|
+ ProductCategory string `json:"product_category"` // 商品类目
|
|
|
ProductPrice float64 `json:"product_price"` // 商品价值
|
|
|
ProductDetail string `json:"product_detail"` // 商品详情
|
|
|
ProductPhotos []ProductPhoto `json:"product_photos"` // 商品图片列表
|