From 085cc8bb3cd21c47a4640a947c1ba0ca4161c5bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Tue, 1 Dec 2020 11:24:55 +0800 Subject: [PATCH] a --- platformapi/jdshopapi/callback.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platformapi/jdshopapi/callback.go b/platformapi/jdshopapi/callback.go index 2c906420..127be8d2 100644 --- a/platformapi/jdshopapi/callback.go +++ b/platformapi/jdshopapi/callback.go @@ -31,6 +31,7 @@ type CallBackResult struct { SellerDiscount string `json:"sellerDiscount"` ConsigneeInfo *CallBackConsigneeInfo `json:"consigneeInfo"` ItemInfoList []*CallBackItemInfoList `json:"itemInfoList"` + VendorOrgCode string `json:"vendorOrgCode"` } type CallBackConsigneeInfo struct { @@ -76,5 +77,6 @@ func (a *API) GetCallbackMsg(request *http.Request) (call *CallBackResult, err e return nil, err } call.MsgType = mapData["msgType"].(string) + call.VendorOrgCode = mapData["vendorOrgCode"].(string) return call, err }