From 6de4fad4dce8fde4b8763eb64f501a9056842a73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Fri, 3 Apr 2020 11:38:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=87=BA=E9=A5=BF=E7=99=BE=E5=81=A5?= =?UTF-8?q?=E5=BA=B7=E5=BA=A6bug=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- business/jxstore/cms/store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxstore/cms/store.go b/business/jxstore/cms/store.go index 1e7fbb797..193f49d40 100644 --- a/business/jxstore/cms/store.go +++ b/business/jxstore/cms/store.go @@ -1713,7 +1713,7 @@ func formalizeStore4Courier(storeDetail *dao.StoreDetail2) *dao.StoreDetail2 { type EbaiStoreHealthy struct { RealShopID int `json:"门店ID"` - MerchantID int `json:"平台门店ID"` + MerchantID string `json:"平台门店ID"` MerchantName string `json:"平台门店名"` SkuNum int `json:"日均在架且有库存的商品数"` IsSku int `json:"商品数是否达标"` @@ -1774,7 +1774,7 @@ func ExportShopsHealthInfo(ctx *jxcontext.Context, vendorIDs, storeIDs []int, is for _, v := range healthInfoList2 { healthy := &EbaiStoreHealthy{ RealShopID: v["real_shop_id"].(int), - MerchantID: v["merchant_id"].(int), + MerchantID: v["merchant_id"].(string), MerchantName: v["merchant_name"].(string), SkuNum: v["sku_num"].(int), IsSku: v["is_sku"].(int),