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)); }