diff --git a/business/jxstore/partner/partner.go b/business/jxstore/partner/partner.go index 8ddfc51c4..699b4446e 100644 --- a/business/jxstore/partner/partner.go +++ b/business/jxstore/partner/partner.go @@ -56,15 +56,24 @@ type GoodsDetail struct { ServTxt string `json:"servTxt"` //服务分 } +type GoodsDetail2 struct { + MainImg string `json:"mainImg"` + Imgs string `json:"imgs"` + StoreImg string `json:"storeImg"` //店铺图片 + StoreName string `json:"storeName"` //店铺名 + Tpwd string `json:"tpwd"` //淘口令 +} + type GoodsList struct { - GoodsID string `json:"goodsID"` - GoodsName string `json:"goodsName"` - Img string `json:"img"` - CouponDiscount int `json:"couponDiscount"` //优惠券 - CouponRemainQuantity int `json:"couponRemainQuantity"` //优惠券剩余数量 - MinNormalPrice int `json:"minNormalPrice"` //最小购买价格 - SalesCount string `json:"salesCount"` //销量 - PromotionRate int `json:"promotionRate"` //佣金比例,千分比 + GoodsID string `json:"goodsID"` + GoodsName string `json:"goodsName"` + Img string `json:"img"` + CouponDiscount int `json:"couponDiscount"` //优惠券 + CouponRemainQuantity int `json:"couponRemainQuantity"` //优惠券剩余数量 + MinNormalPrice int `json:"minNormalPrice"` //最小购买价格 + SalesCount string `json:"salesCount"` //销量 + PromotionRate int `json:"promotionRate"` //佣金比例,千分比 + GoodsDetail []*GoodsDetail2 `json:"goodsDetail"` //淘宝用 } type MatterList struct {