This commit is contained in:
苏尹岚
2020-10-14 15:25:26 +08:00
parent 3fa46c9afd
commit cbe94c7916
4 changed files with 67 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
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)
}