alipay_params.go 927 B

1234567891011121314151617181920212223242526272829
  1. //==================================
  2. // * Name:Jerry
  3. // * Tel:18017448610
  4. // * DateTime:2019/1/13 14:42
  5. //==================================
  6. package gopay
  7. type AliPayParams struct {
  8. NonceStr string `xml:"nonce_str"`
  9. Body string `xml:"body"`
  10. OutTradeNo string `xml:"out_trade_no"`
  11. TotalFee int `xml:"total_fee"`
  12. SpbillCreateIp string `xml:"spbill_create_ip"`
  13. NotifyUrl string `xml:"notify_url"`
  14. TradeType string `xml:"trade_type"`
  15. DeviceInfo string `xml:"device_info"`
  16. SignType string `xml:"sign_type"`
  17. Detail string `xml:"detail"`
  18. Attach string `xml:"attach"`
  19. FeeType string `xml:"fee_type"`
  20. TimeStart string `xml:"time_start"`
  21. TimeExpire string `xml:"time_expire"`
  22. GoodsTag string `xml:"goods_tag"`
  23. ProductId string `xml:"product_id"`
  24. LimitPay string `xml:"limit_pay"`
  25. Openid string `xml:"openid"`
  26. Receipt string `xml:"receipt"`
  27. }