Files
jx-callback/business/jxstore/financial/pay.go
苏尹岚 cbe94c7916 pay
2020-10-14 15:25:26 +08:00

14 lines
261 B
Go

package financial
import (
"git.rosy.net.cn/jx-callback/business/model"
)
type PayHandler struct {
PayType int `json:"-"` //支付方式
}
type PayHandlerInterface interface {
CreatePay(order *model.Order, payType int, vendorPayType string) (err error)
}