Files
xk-of-api/api/payment/v1/payment.go
2026-07-18 05:58:41 +08:00

12 lines
320 B
Go

package v1
import "github.com/gogf/gf/v2/frame/g"
// NotifyReq 是支付渠道回调请求。
type NotifyReq struct {
g.Meta `path:"/api/payments/notify/{channel}" tags:"支付" method:"post" summary:"接收支付渠道回调"`
Channel string `json:"channel" in:"path" dc:"支付渠道"`
}
type NotifyRes struct{}