diff --git a/platformapi/weimobapi/goods.go b/platformapi/weimobapi/goods.go index d37489c0..c2608d40 100644 --- a/platformapi/weimobapi/goods.go +++ b/platformapi/weimobapi/goods.go @@ -181,7 +181,7 @@ type CategoryList struct { } type ChildrenClassify struct { ChildrenClassify interface{} `json:"childrenClassify"` - ClassifyID int `json:"classifyId"` + ClassifyID int64 `json:"classifyId"` GoodsNum interface{} `json:"goodsNum"` ImageURL interface{} `json:"imageUrl"` IsHot interface{} `json:"isHot"` @@ -191,7 +191,7 @@ type ChildrenClassify struct { } type SelectedClassifyList struct { ChildrenClassify []ChildrenClassify `json:"childrenClassify"` - ClassifyID int `json:"classifyId"` + ClassifyID int64 `json:"classifyId"` GoodsNum interface{} `json:"goodsNum"` ImageURL interface{} `json:"imageUrl"` IsHot int `json:"isHot"` @@ -315,7 +315,7 @@ type Goods struct { SelectedGoodsAttrList []SelectedGoodsAttrList `json:"selectedGoodsAttrList,omitempty"` SelectedSaleAttrList []SelectedSaleAttrList `json:"selectedSaleAttrList,omitempty"` GoodsImageURL []string `json:"goodsImageUrl"` - SelectedClassifyIDList []int `json:"selectedClassifyIdList,omitempty"` + SelectedClassifyIDList []int64 `json:"selectedClassifyIdList,omitempty"` GoodsID int64 `json:"goodsId"` OuterGoodsCode string `json:"outerGoodsCode"` PointDeductRatio int `json:"pointDeductRatio"`