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