1234567891011121314151617181920212223242526272829303132 |
- package bus
- import (
- "context"
- "pay/db/model"
- "infish.cn/comm/pay"
- )
- const (
- ALIPAY = 0
- WECHATPAY = 1
- SINGLE = 0
- MULTI = 1
- )
- type PayInf interface {
- Pay(context.Context, *pay.OrderMsg) (interface{}, error)
- Close(context.Context, *pay.OrderMsg) (bool, error)
- ReFundPay(ctx context.Context, refund *pay.ReFund) (interface{}, error)
- ReFundQuery(ctx context.Context, refund *model.ReFund) (interface{}, error)
- }
- func PayMod(payType int, category int) PayInf {
- if payType == ALIPAY {
- return NewSingleAliPay()
- } else if payType == WECHATPAY {
- return NewSingleWechatPay()
- }
- return nil
- }
|