wuxw
2025-03-08 4a1e7c9d58fab8a3786b7d97e829a70de325b3fa
java110-interface/src/main/java/com/java110/intf/common/IAreaInnerServiceSMO.java
@@ -12,7 +12,7 @@
/**
 * 查询地区信息
 */
@FeignClient(name = "${java110.common-service}", configuration = {FeignConfiguration.class})
@FeignClient(name = "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);
}