接口 FeignStreetApi

    • 方法详细资料

      • 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 - 搜索参数
        返回:
        街道列表
      • findAll

        @PostMapping("/all")
        net.guerlab.web.result.Result<List<StreetDTO>> findAll​(@RequestBody
                                                               Map<String,​Object> searchParams)
        根据搜索参数查询街道列表
        参数:
        searchParams - 搜索参数
        返回:
        街道列表