回调打桩

This commit is contained in:
邹宗楠
2022-03-30 17:34:36 +08:00
parent 78a23f293b
commit 798c5fcaf8
4 changed files with 54 additions and 53 deletions

View File

@@ -72,7 +72,8 @@ func (a *API) GetStore(storeID string) (getStoreResult *GetOneStoreRespData, err
BusinessData: "",
}
// 序列化请求参数
data, err := json.Marshal(GetOneStore{MerchantID: a.merchantId, OutShopCode: storeID})
//data, err := json.Marshal(GetOneStore{MerchantID: a.merchantId, OutShopCode: storeID}) 正式环境
data, err := json.Marshal(GetOneStore{MerchantID: a.merchantId, ChainStoreId: storeID}) // 沙箱
if err != nil {
return nil, err
}