java110
2022-06-28 22e8a676ee42c0d78b3526bcd9a635abbe8dca03
java110-interface/src/main/java/com/java110/intf/common/IAreaInnerServiceSMO.java
@@ -12,7 +12,7 @@
/**
 * 查询地区信息
 */
@FeignClient(name = "common-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/areaApi")
public interface IAreaInnerServiceSMO {
@@ -27,5 +27,7 @@
    @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);
}