feat: add refund

This commit is contained in:
Rogee
2025-05-06 19:21:41 +08:00
parent 463df5d3a9
commit b7ebdf1ce6
4 changed files with 133 additions and 8 deletions

View File

@@ -2,6 +2,8 @@ package fields
import (
"quyun/providers/wepay"
"github.com/go-pay/gopay/wechat/v3"
)
// swagger:enum OrderStatus
@@ -9,5 +11,6 @@ import (
type OrderStatus int16
type OrderMeta struct {
PayNotify wepay.PayNotify `json:"pay_notify"`
PayNotify wepay.PayNotify `json:"pay_notify"`
RefundResp *wechat.RefundOrderResponse `json:"refund_resp"`
}