13 lines
307 B
Go
13 lines
307 B
Go
package wechatrepo
|
|
|
|
import (
|
|
"context"
|
|
"voucher/internal/biz/bo"
|
|
"voucher/internal/biz/vo"
|
|
)
|
|
|
|
type WechatCpnRepo interface {
|
|
Order(ctx context.Context, orderWechat *bo.OrderWechatBo) (couponId string, err error)
|
|
Query(ctx context.Context, orderWechat *bo.OrderWechatBo) (vo.OrderWechatStatus, error)
|
|
}
|