Blame view

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