代码拉取完成,页面将自动刷新
package common
// WeChatResult 微信支付返回
type WxReResult struct {
PrepayID string `xml:"prepay_id" json:"prepay_id,omitempty"`
CodeURL string `xml:"code_url" json:"code_url,omitempty"`
}
// WxBaseResult 基本信息
type WxBaseResult struct {
ReturnCode string `xml:"return_code" json:"return_code,omitempty"`
ReturnMsg string `xml:"return_msg" json:"return_msg,omitempty"`
}
// WxReturnData 返回通用数据
type WxReturnData struct {
AppID string `xml:"appid,omitempty" json:"appid,omitempty"`
MchID string `xml:"mch_id,omitempty" json:"mch_id,omitempty"`
MchAppid string `xml:"mch_appid,omitempty" json:"mch_appid,omitempty"`
DeviceInfo string `xml:"device_info,omitempty" json:"device_info,omitempty"`
NonceStr string `xml:"nonce_str,omitempty" json:"nonce_str,omitempty"`
Sign string `xml:"sign,omitempty" json:"sign,omitempty"`
ResultCode string `xml:"result_code,omitempty" json:"result_code,omitempty"`
ErrCode string `xml:"err_code,omitempty" json:"err_code,omitempty"`
ErrCodeDes string `xml:"err_code_des,omitempty" json:"err_code_des,omitempty"`
}
// WxResultData 结果通用数据
type WxResultData struct {
OpenID string `xml:"openid,omitempty" json:"openid,omitempty"`
IsSubscribe string `xml:"is_subscribe,omitempty" json:"is_subscribe,omitempty"`
TradeType string `xml:"trade_type,omitempty" json:"trade_type,omitempty"`
BankType string `xml:"bank_type,omitempty" json:"bank_type,omitempty"`
FeeType string `xml:"fee_type,omitempty" json:"fee_type,omitempty"`
TotalFee string `xml:"total_fee,omitempty" json:"total_fee,omitempty"`
CashFeeType string `xml:"cash_fee_type,omitempty" json:"cash_fee_type,omitempty"`
CashFee string `xml:"cash_fee,omitempty" json:"cash_fee,omitempty"`
TransactionID string `xml:"transaction_id,omitempty" json:"transaction_id,omitempty"`
OutTradeNO string `xml:"out_trade_no,omitempty" json:"out_trade_no,omitempty"`
Attach string `xml:"attach,omitempty" json:"attach,omitempty"`
TimeEnd string `xml:"time_end,omitempty" json:"time_end,omitempty"`
PartnerTradeNo string `xml:"partner_trade_no,omitempty" json:"partner_trade_no,omitempty"`
PaymentNo string `xml:"payment_no,omitempty" json:"payment_no,omitempty"`
PaymentTime string `xml:"payment_time,omitempty" json:"payment_time,omitempty"`
DetailId string `xml:"detail_id,omitempty" json:"detail_id,omitempty"`
}
type WxPayResult struct {
WxBaseResult
WxReturnData
WxResultData
}
type WxQueryResult struct {
WxBaseResult
WxReResult
WxReturnData
WxResultData
TradeState string `xml:"trade_state" json:"trade_state,omitempty"`
TradeStateDesc string `xml:"trade_state_desc" json:"trade_state_desc,omitempty"`
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。