You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
759 B
Go
24 lines
759 B
Go
package payment
|
|
|
|
type WxPayResult struct {
|
|
AppId string `json:"appId"`
|
|
Timestamp string `json:"timeStamp"`
|
|
NonceStr string `json:"nonceStr"`
|
|
Package string `json:"package"`
|
|
PaySign string `json:"paySign"`
|
|
PaySignType string `json:"signType"`
|
|
Service string `json:"service"`
|
|
OrderID string `json:"orderid"`
|
|
OrderTime string `json:"order_time"`
|
|
MchOrderID string `json:"mch_orderid"`
|
|
QrCode string `json:"qr_code"`
|
|
TradeType string `json:"trade_type"`
|
|
PrepayId string `json:"prepay_id"`
|
|
Version string `json:"version"`
|
|
Charset string `json:"charset"`
|
|
Message string `json:"message"`
|
|
Status string `json:"status"`
|
|
SignType string `json:"sign_ype"`
|
|
Sign string `json:"sign"`
|
|
}
|