This commit is contained in:
苏尹岚
2020-12-01 11:24:55 +08:00
parent e6a831324c
commit 085cc8bb3c

View File

@@ -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
}