| | |
| | | /** |
| | | * 查询地区信息 |
| | | */ |
| | | @FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "common-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/areaApi") |
| | | public interface IAreaInnerServiceSMO { |
| | | |
| | |
| | | @RequestMapping(value = "/getProvCityArea", method = RequestMethod.POST) |
| | | public List<AreaDto> getProvCityArea(@RequestBody AreaDto areaDto); |
| | | |
| | | @RequestMapping(value = "/getWholeArea", method = RequestMethod.POST) |
| | | public List<AreaDto> getWholeArea(@RequestBody AreaDto areaDto); |
| | | |
| | | } |