| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestHeader; |
| | | |
| | | /** |
| | | * 这里这个name 需要填写 请求的服务提供者的注册到nacos Server上面的服务名,path 是请求接口前缀 |
| | |
| | | @PostMapping(value = "/newSync/order/cancel") |
| | | Result cancelOrder(@RequestBody OrderRefundDto params); |
| | | |
| | | /** |
| | | * 开放平台-同步中心心跳退款流程 |
| | | */ |
| | | @PostMapping(value = "/refund/syn/refund") |
| | | Result synRefund(@RequestBody OrderRefundDto dto, @RequestHeader("appIdCode") String appIdCode); |
| | | } |