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),