| | |
| | | import com.hz.his.dto.sync.SyncOrderDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestParam; |
| | | |
| | | /** |
| | |
| | | * @param syncOrderDto |
| | | * @return |
| | | */ |
| | | @GetMapping(value = "/sync/order/cancelOrder") |
| | | @PostMapping(value = "/sync/order/cancelOrder") |
| | | Result cancelOrder(SyncOrderDto syncOrderDto); |
| | | |
| | | /** |
| | |
| | | * @param syncOrderDto |
| | | * @return |
| | | */ |
| | | @GetMapping(value = "/sync/order/refundOrder") |
| | | @PostMapping(value = "/sync/order/refundOrder") |
| | | Result refundOrder(SyncOrderDto syncOrderDto); |
| | | |
| | | } |