IApiCallBackInnerServiceSMO.java 717 B

123456789101112131415161718
  1. package com.java110.intf.api;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.java110.config.feign.FeignConfiguration;
  4. import com.java110.po.advert.AdvertItemPo;
  5. import org.springframework.cloud.openfeign.FeignClient;
  6. import org.springframework.web.bind.annotation.RequestBody;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.RequestMethod;
  9. @FeignClient(name = "api-service", configuration = {FeignConfiguration.class})
  10. @RequestMapping("/apiCallBack")
  11. public interface IApiCallBackInnerServiceSMO {
  12. @RequestMapping(value = "/webSentParkingArea", method = RequestMethod.POST)
  13. public int webSentParkingArea(@RequestBody JSONObject reqJson);
  14. }