mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-10-21 01:13:44 +08:00
18 lines
610 B
Go
18 lines
610 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package pay
|
|
|
|
import (
|
|
"context"
|
|
|
|
"hotgo/api/api/pay/v1"
|
|
)
|
|
|
|
type IPayV1 interface {
|
|
NotifyAliPay(ctx context.Context, req *v1.NotifyAliPayReq) (res *v1.NotifyAliPayRes, err error)
|
|
NotifyWxPay(ctx context.Context, req *v1.NotifyWxPayReq) (res *v1.NotifyWxPayRes, err error)
|
|
NotifyQQPay(ctx context.Context, req *v1.NotifyQQPayReq) (res *v1.NotifyQQPayRes, err error)
|
|
}
|