pay.go 615 B

1234567891011121314151617181920212223242526272829303132
  1. package bus
  2. import (
  3. "context"
  4. "pay/db/model"
  5. "infish.cn/comm/pay"
  6. )
  7. const (
  8. ALIPAY = 0
  9. WECHATPAY = 1
  10. SINGLE = 0
  11. MULTI = 1
  12. )
  13. type PayInf interface {
  14. Pay(context.Context, *pay.OrderMsg) (interface{}, error)
  15. Close(context.Context, *pay.OrderMsg) (bool, error)
  16. ReFundPay(ctx context.Context, refund *pay.ReFund) (interface{}, error)
  17. ReFundQuery(ctx context.Context, refund *model.ReFund) (interface{}, error)
  18. }
  19. func PayMod(payType int, category int) PayInf {
  20. if payType == ALIPAY {
  21. return NewSingleAliPay()
  22. } else if payType == WECHATPAY {
  23. return NewSingleWechatPay()
  24. }
  25. return nil
  26. }