19 lines
336 B
Go
19 lines
336 B
Go
package cmb
|
|
|
|
import (
|
|
"context"
|
|
"voucher/internal/biz/bo"
|
|
)
|
|
|
|
func (v *Cmb) OrderConsume(ctx context.Context, order *bo.OrderBo) (err error) {
|
|
return
|
|
}
|
|
|
|
func (v *Cmb) QueryConsume(ctx context.Context, order *bo.OrderBo) (err error) {
|
|
return
|
|
}
|
|
|
|
func (v *Cmb) NotifyConsume(ctx context.Context, orderNo string) (err error) {
|
|
return
|
|
}
|