From c1d0fbeb53c55048509a763feb6aebe7bfd6bac2 Mon Sep 17 00:00:00 2001 From: wangrangrang Date: Thu, 20 Jul 2023 16:30:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/order/controller/InvoicePushController.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/InvoicePushController.java b/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/InvoicePushController.java index b0b16a00..77d6da2c 100644 --- a/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/InvoicePushController.java +++ b/order-management-consumer/src/main/java/com/dxhy/order/consumer/modules/order/controller/InvoicePushController.java @@ -3,6 +3,7 @@ package com.dxhy.order.consumer.modules.order.controller; import com.dxhy.order.consumer.modules.order.service.InvoicePushService; import com.dxhy.order.model.R; import lombok.extern.slf4j.Slf4j; +import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @@ -30,6 +31,7 @@ public class InvoicePushController { * @param pushInfoRecordId * @return R */ + @GetMapping("/retryPush") public R retryPush(@RequestParam Long pushInfoRecordId){ return R.ok().put("data", invoicePushService.retryPush(pushInfoRecordId)); }