接口 FeignStreetApi
-
@FeignClient(name="region-internal/inside/street", fallbackFactory=FeignStreetApiFallbackFactory.class) public interface FeignStreetApi街道服务接口- 作者:
- guer
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 net.guerlab.web.result.Result<List<StreetDTO>>findAll(Map<String,Object> searchParams)根据搜索参数查询街道列表net.guerlab.web.result.Result<net.guerlab.web.result.ListObject<StreetDTO>>findList(Map<String,Object> searchParams)根据搜索参数查询街道列表net.guerlab.web.result.Result<StreetDTO>findOne(Long streetId)根据街道id查询街道
-
-
-
方法详细资料
-
findOne
@PostMapping("/{streetId}") net.guerlab.web.result.Result<StreetDTO> findOne(@PathVariable("streetId") Long streetId)根据街道id查询街道- 参数:
streetId- 街道id- 返回:
- 街道
-
findList
@PostMapping net.guerlab.web.result.Result<net.guerlab.web.result.ListObject<StreetDTO>> findList(@RequestBody Map<String,Object> searchParams)
根据搜索参数查询街道列表- 参数:
searchParams- 搜索参数- 返回:
- 街道列表
-
-