|
|
|
|
@ -104,11 +104,12 @@ type WithdrawData struct { |
|
|
|
|
|
|
|
|
|
type WithdrawCallbackReq struct { |
|
|
|
|
Status int64 `json:"status" form:"status"` // 0失败 1成功
|
|
|
|
|
ErrorMsg int64 `json:"errorMsg" form:"errorMsg" encode:"1"` |
|
|
|
|
ErrorMsg string `json:"errorMsg" form:"errorMsg" encode:"1"` |
|
|
|
|
PartnerWithdrawNo string `json:"partnerWithdrawNo" form:"partnerWithdrawNo"` // 商户订单号
|
|
|
|
|
WithdrawNo string `json:"withdrawNo" form:"withdrawNo"` // 平台订单号
|
|
|
|
|
ChannelWithdrawNo string `json:"channelWithdrawNo" form:"channelWithdrawNo"` // 上游生成的代收号
|
|
|
|
|
Amount int64 `json:"amount" form:"amount"` |
|
|
|
|
Amount string `json:"amount" form:"amount"` |
|
|
|
|
Utr string `json:"utr" form:"utr"` |
|
|
|
|
Sign string `json:"sign" form:"sign"` |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|