You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
3 years ago
|
package afs
|
||
|
|
||
|
import "git.oa00.com/go/jcook-sdk/api/rest"
|
||
|
|
||
|
// PostBackLogisticsBillRequest 上传物流.
|
||
|
type PostBackLogisticsBillRequest struct {
|
||
|
CtpProtocol rest.CtpProtocol `json:"ctpProtocol"`
|
||
|
LogisticsBillParam LogisticsBillParam `json:"logisticsBillParam"`
|
||
|
}
|
||
|
|
||
|
type LogisticsBillParam struct {
|
||
|
Pin string `json:"pin"`
|
||
|
AfsServiceID uint `json:"afsServiceId"`
|
||
|
LogisticsCompany string `json:"logisticsCompany"`
|
||
|
WaybillCode string `json:"waybillCode"`
|
||
|
SendGoodsDate string `json:"sendGoodsDate"`
|
||
|
}
|
||
|
|
||
|
func (o PostBackLogisticsBillRequest) GetApiName() string {
|
||
|
return "jingdong.ctp.afs.logistics.postBackLogisticsBillParam"
|
||
|
}
|
||
|
|
||
|
func (o PostBackLogisticsBillRequest) GetRespName() string {
|
||
|
return "jingdong_ctp_afs_logistics_postBackLogisticsBillParam_responce"
|
||
|
}
|
||
|
|
||
|
func (o PostBackLogisticsBillRequest) GetRespObj() interface{} {
|
||
|
return PostBackLogisticsBillResponse{}
|
||
|
}
|
||
|
|
||
|
// PostBackLogisticsBillResponse 售后单创建返回.
|
||
|
type PostBackLogisticsBillResponse struct {
|
||
|
Result struct {
|
||
|
Data PostBackLogisticsBillParams `json:"data"`
|
||
|
ErrCode uint `json:"errCode"`
|
||
|
ErrMsg string `json:"errMsg"`
|
||
|
Success bool `json:"success"`
|
||
|
} `json:"result"`
|
||
|
}
|
||
|
|
||
|
type PostBackLogisticsBillParams struct {
|
||
|
PostBackResult bool `json:"postBackResult"`
|
||
|
Message string `json:"message"`
|
||
|
}
|