智慧食堂
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

alipay.go 1.3 KiB

1年前
12345678910111213141516171819202122232425262728293031323334
  1. package md
  2. // AliPayCallback 支付宝的回调结构体
  3. type AliPayCallback struct {
  4. AppID string `json:"app_id"`
  5. AuthAppID string `json:"auth_app_id"`
  6. BuyerID string `json:"buyer_id"`
  7. BuyerLogonID string `json:"buyer_logon_id"`
  8. BuyerPayAmount string `json:"buyer_pay_amount"`
  9. Charset string `json:"charset"`
  10. FundBillList string `json:"fund_bill_list"`
  11. GmtCreate string `json:"gmt_create"`
  12. GmtPayment string `json:"gmt_payment"`
  13. InvoiceAmount string `json:"invoice_amount"`
  14. OrderType string `json:"order_type"`
  15. MasterID string `json:"master_id"`
  16. NotifyID string `json:"notify_id"`
  17. NotifyTime string `json:"notify_time"`
  18. NotifyType string `json:"notify_type"`
  19. OutTradeNo string `json:"out_trade_no"`
  20. PassbackParams string `json:"passback_params"`
  21. PointAmount string `json:"point_amount"`
  22. ReceiptAmount string `json:"receipt_amount"`
  23. SellerEmail string `json:"seller_email"`
  24. SellerID string `json:"seller_id"`
  25. Sign string `json:"sign"`
  26. SignType string `json:"sign_type"`
  27. Subject string `json:"subject"`
  28. TotalAmount string `json:"total_amount"`
  29. TradeNo string `json:"trade_no"`
  30. TradeStatus string `json:"trade_status"`
  31. Version string `json:"version"`
  32. PayMethod string `json:"pay_method"`
  33. }