wuxw
2025-02-25 4f365007869668ee035dc44ca98263b85ced8d8a
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);
}