17 lines
573 B
Go
17 lines
573 B
Go
package repo
|
|
|
|
import (
|
|
"context"
|
|
"voucher/internal/biz/bo"
|
|
)
|
|
|
|
type OrderWechatRepo interface {
|
|
Create(ctx context.Context, req *bo.OrderWechatBo) (*bo.OrderWechatBo, error)
|
|
Success(ctx context.Context, id uint64, couponId string) error
|
|
Fail(ctx context.Context, id uint64, remark string) error
|
|
GetByOutRequestNo(ctx context.Context, outRequestNo string) (*bo.OrderWechatBo, error)
|
|
GetByMSCId(ctx context.Context, mchId, stockId, couponId string) (*bo.OrderWechatBo, error)
|
|
Used(ctx context.Context, id uint64) error
|
|
Expired(ctx context.Context, id uint64) error
|
|
}
|