package com.java110.intf.common; import com.java110.config.feign.FeignConfiguration; import com.java110.dto.area.AreaDto; 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; import java.util.List; /** * 查询地区信息 */ @FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class}) @RequestMapping("/areaApi") public interface IAreaInnerServiceSMO { /** *

查询地区

* * @return AreaDto 对象数据 */ @RequestMapping(value = "/getArea", method = RequestMethod.POST) public List getArea(@RequestBody AreaDto areaDto); @RequestMapping(value = "/getProvCityArea", method = RequestMethod.POST) public List getProvCityArea(@RequestBody AreaDto areaDto); @RequestMapping(value = "/getWholeArea", method = RequestMethod.POST) public List getWholeArea(@RequestBody AreaDto areaDto); }