改造接口
This commit is contained in:
parent
d24e7671e0
commit
2c7d2581f7
|
|
@ -74,7 +74,13 @@ func (this *VoucherBiz) notifyUsed(ctx context.Context, order *bo.OrderBo, req *
|
|||
return nil
|
||||
}
|
||||
|
||||
if err := this.OrderRepo.NotifyUsed(ctx, order.ID, req.PlainText.ConsumeInformation.TransactionID, req.PlainText.ConsumeInformation.ConsumeTime); err != nil {
|
||||
err := this.OrderRepo.NotifyUsed(
|
||||
ctx,
|
||||
order.ID,
|
||||
req.PlainText.ConsumeInformation.TransactionID,
|
||||
req.PlainText.ConsumeInformation.ConsumeTime,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue