| | |
| | | package com.java110.core.smo.common; |
| | | |
| | | import com.java110.core.feign.FeignConfiguration; |
| | | 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; |
| | |
| | | @RequestMapping(value = "/getArea", method = RequestMethod.POST) |
| | | public List<AreaDto> getArea(@RequestBody AreaDto areaDto); |
| | | |
| | | @RequestMapping(value = "/getProvCityArea", method = RequestMethod.POST) |
| | | public List<AreaDto> getProvCityArea(@RequestBody AreaDto areaDto); |
| | | |
| | | |
| | | } |