重试脚本

This commit is contained in:
ziming 2025-05-28 19:28:32 +08:00
parent b523b035ad
commit 91f7db4caa
1 changed files with 5 additions and 5 deletions

View File

@ -43,11 +43,6 @@ func NewCmbService(
} }
} }
func (c *CmbService) OrderRetry(ctx context.Context, request *v1.OrderRetryRequest) (*v1.Empty, error) {
return nil, c.VoucherBiz.OrderRetry(ctx, request.GetTransactionIds())
}
func (c *CmbService) GetResponse(ctx context.Context, replyBizContent []byte) (*v1.CmbReply, error) { func (c *CmbService) GetResponse(ctx context.Context, replyBizContent []byte) (*v1.CmbReply, error) {
req := &bo.CmbResponseBo{ req := &bo.CmbResponseBo{
@ -96,6 +91,11 @@ func (this *CmbService) QueryOrder(ctx http.Context) error {
}) })
} }
func (c *CmbService) OrderRetry(ctx context.Context, request *v1.OrderRetryRequest) (*v1.Empty, error) {
return nil, c.VoucherBiz.OrderRetry(ctx, request.GetTransactionIds())
}
func (this *CmbService) RegisterTag(ctx http.Context) error { func (this *CmbService) RegisterTag(ctx http.Context) error {
productNo := ctx.Vars().Get("product_no") productNo := ctx.Vars().Get("product_no")