- package wxpay
- type WxPayRequestData struct {
- Description string `json:"description"` //购买的产品的描述
- Amount int64 `json:"amount"` //产品金额,单位是分
- }
- type WxPayResponseData struct {
- PaySign string `json:"pay_sign"` //签名
- Package string `json:"package"` //随机字符串
- TimeStamp string `json:"time_stamp"` //时间戳
- NonceStr string `json:"nonce_str"` //随机字符串
- }
- type WxPayNotifyData struct {
- }
|