智慧食堂
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

42 行
1.5 KiB

  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. GmtRefund string `json:"gmt_refund"`
  13. GmtPayment string `json:"gmt_payment"`
  14. InvoiceAmount string `json:"invoice_amount"`
  15. OrderType string `json:"order_type"`
  16. MasterID string `json:"master_id"`
  17. NotifyID string `json:"notify_id"`
  18. NotifyTime string `json:"notify_time"`
  19. NotifyType string `json:"notify_type"`
  20. OutTradeNo string `json:"out_trade_no"`
  21. PassbackParams string `json:"passback_params"`
  22. PointAmount string `json:"point_amount"`
  23. ReceiptAmount string `json:"receipt_amount"`
  24. SellerEmail string `json:"seller_email"`
  25. SellerID string `json:"seller_id"`
  26. Sign string `json:"sign"`
  27. SignType string `json:"sign_type"`
  28. Subject string `json:"subject"`
  29. TotalAmount string `json:"total_amount"`
  30. TradeNo string `json:"trade_no"`
  31. TradeStatus string `json:"trade_status"`
  32. Version string `json:"version"`
  33. PayMethod string `json:"pay_method"`
  34. }
  35. type AesStruct struct {
  36. Code string `json:"code"`
  37. Msg string `json:"msg"`
  38. Mobile string `json:"mobile"`
  39. }