zhangxu
2022-10-18 7dced1fcca5799e047c757c390ec9a7584789613
phis-feign/src/main/java/com/hz/his/feign/service/sync/SyncOrderService.java
@@ -8,6 +8,7 @@
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;
/**
@@ -30,7 +31,7 @@
     * @param syncOrderDto
     * @return
     */
    @GetMapping(value = "/sync/order/cancelOrder")
    @PostMapping(value = "/sync/order/cancelOrder")
    Result cancelOrder(SyncOrderDto syncOrderDto);
    /**
@@ -39,7 +40,7 @@
     * @param syncOrderDto
     * @return
     */
    @GetMapping(value = "/sync/order/refundOrder")
    @PostMapping(value = "/sync/order/refundOrder")
    Result refundOrder(SyncOrderDto syncOrderDto);
}