Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- package md
-
- // AliPayCallback 支付宝的回调结构体
- type AliPayCallback struct {
- AppID string `json:"app_id"`
- AuthAppID string `json:"auth_app_id"`
- BuyerID string `json:"buyer_id"`
- BuyerLogonID string `json:"buyer_logon_id"`
- BuyerPayAmount string `json:"buyer_pay_amount"`
- Charset string `json:"charset"`
- FundBillList string `json:"fund_bill_list"`
- GmtCreate string `json:"gmt_create"`
- GmtRefund string `json:"gmt_refund"`
- GmtPayment string `json:"gmt_payment"`
- InvoiceAmount string `json:"invoice_amount"`
- OrderType string `json:"order_type"`
- MasterID string `json:"master_id"`
- NotifyID string `json:"notify_id"`
- NotifyTime string `json:"notify_time"`
- NotifyType string `json:"notify_type"`
- OutTradeNo string `json:"out_trade_no"`
- PassbackParams string `json:"passback_params"`
- PointAmount string `json:"point_amount"`
- ReceiptAmount string `json:"receipt_amount"`
- SellerEmail string `json:"seller_email"`
- SellerID string `json:"seller_id"`
- Sign string `json:"sign"`
- SignType string `json:"sign_type"`
- Subject string `json:"subject"`
- TotalAmount string `json:"total_amount"`
- TradeNo string `json:"trade_no"`
- TradeStatus string `json:"trade_status"`
- Version string `json:"version"`
- PayMethod string `json:"pay_method"`
- }
-
- type AesStruct struct {
- Code string `json:"code"`
- Msg string `json:"msg"`
- Mobile string `json:"mobile"`
- }
|