light-pkg/myPay/wechat_notify.go

16 lines
299 B
Go
Raw Normal View History

2024-12-18 03:41:30 +08:00
package myPay
import "github.com/go-pay/gopay/wechat/v3"
type WechatNotifyResp struct {
resp *wechat.V3DecryptPayResult
}
func (t *WechatNotifyResp) IsSuccess() bool {
return t.resp.TradeState == "SUCCESS"
}
func (t *WechatNotifyResp) GetResult() *wechat.V3DecryptPayResult {
return t.resp
}