// Code scaffolded by goctl. Safe to edit. // goctl 1.10.1 package callback import ( "context" "github.com/zeromicro/go-zero/core/logx" "sundynix-micro-go/app/radio/api/internal/svc" ) type WechatPayCallbackLogic struct { logx.Logger ctx context.Context svcCtx *svc.ServiceContext } // 微信支付回调 func NewWechatPayCallbackLogic(ctx context.Context, svcCtx *svc.ServiceContext) *WechatPayCallbackLogic { return &WechatPayCallbackLogic{ Logger: logx.WithContext(ctx), ctx: ctx, svcCtx: svcCtx, } } func (l *WechatPayCallbackLogic) WechatPayCallback() error { // todo: add your logic here and delete this line return nil }