蛋蛋星球-制度模式
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.

42 wiersze
1.3 KiB

  1. package saobei
  2. const (
  3. baseUrl = "https://pay.lcsw.cn/lcsw"
  4. sandboxBaseUrl = "http://test2.lcsw.cn:8117/lcsw"
  5. //PayTypeWX 支付方式:微信
  6. PayTypeWX = "010"
  7. //PayTypeAli 支付方式:支付宝
  8. PayTypeAli = "020"
  9. //PayTypeQQ 支付方式:QQ钱包
  10. PayTypeQQ = "060"
  11. //PayTypeYi 支付方式:翼支付
  12. PayTypeYi = "100"
  13. //PayTypeYL 支付方式:银联二维码
  14. PayTypeYL = "110"
  15. //ResultCodeSuccess 业务结果:01 成功
  16. ResultCodeSuccess = "01"
  17. //ResultCodeFail 业务结果:02 失败
  18. ResultCodeFail = "02"
  19. //ResultCodePaying 业务结果:03 支付中
  20. ResultCodePaying = "03"
  21. //TradeStatusSuccess 交易订单状态:支付成功
  22. TradeStatusSuccess = "SUCCESS"
  23. //TradeStatusRefund 交易订单状态:转入退款
  24. TradeStatusRefund = "REFUND"
  25. //TradeStatusNotPay 交易订单状态:未支付
  26. TradeStatusNotPay = "NOTPAY"
  27. //TradeStatusClosed 交易订单状态:已关闭
  28. TradeStatusClosed = "CLOSED"
  29. //TradeStatusUserPaying 交易订单状态:用户支付中
  30. TradeStatusUserPaying = "USERPAYING"
  31. //TradeStatusRevoked 交易订单状态:已撤销
  32. TradeStatusRevoked = "REVOKED"
  33. //TradeStatusNoPay 交易订单状态:未支付支付超时
  34. TradeStatusNoPay = "NOPAY"
  35. //TradeStatusPayError 交易订单状态:支付失败
  36. TradeStatusPayError = "PAYERROR"
  37. )