QmsFeign.java 668 B

1234567891011121314151617181920
  1. package com.steerinfo.dil.feign;
  2. import com.steerinfo.framework.controller.RESTfulResult;
  3. import org.springframework.cloud.openfeign.FeignClient;
  4. import org.springframework.web.bind.annotation.PostMapping;
  5. import org.springframework.web.bind.annotation.RequestBody;
  6. import java.util.Map;
  7. /**
  8. * @ author :TXF
  9. * @ time :2021/11/19 16:28
  10. */
  11. @FeignClient(value = "dil-trick-queue-dev", url = "${openfeign.QmsFeign.url}")
  12. public interface QmsFeign {
  13. //远程调用新增运输订单
  14. @PostMapping("api/v1/queueTruck/qmsqueueresults/utilscontroller/addQueueResultByCk")
  15. RESTfulResult addQueueResultByCk(@RequestBody Map<String,Object> mapValue);
  16. }