From 810e8dd646222e71417f2660c7966ec8b2b8d01b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Wed, 20 Nov 2019 19:27:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B0=B8=E8=BE=89=E5=95=86?= =?UTF-8?q?=E5=93=81=E6=8E=A5=E5=8F=A3=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- platformapi/weimobapi/goods.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"`