14 lines
261 B
Go
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)
|
|
}
|