|
|
@ -460,6 +460,12 @@ public interface GovOrgOpenFeignClient { |
|
|
|
@PostMapping("/gov/org/grid/getbaseinfo") |
|
|
|
Result<CustomerGridDTO> getGridBaseInfoByGridId(CustomerGridFormDTO customerGridFormDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @param houseIds |
|
|
|
* @param customerId |
|
|
|
* @return 根据房屋id查询房屋表,并且放到了缓存里 |
|
|
|
*/ |
|
|
|
@PostMapping(value = "/gov/org/house/queryListHouseInfo", consumes = MediaType.APPLICATION_JSON_VALUE) |
|
|
|
Result<List<HouseInfoDTO>> queryListHouseInfo(@RequestBody Set<String> houseIds, @RequestParam("customerId") String customerId); |
|
|
|
|
|
|
@ -486,6 +492,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
Result<List<OptionResultDTO>> getBranchOption(@RequestBody CustomerPartyBranchDTO formDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @Description 获取小区内的楼栋 |
|
|
|
* @Param dto |
|
|
|
* @Return {@link Result<List<OptionResultDTO>>} |
|
|
@ -496,6 +503,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
Result<List<OptionResultDTO>> getBuildingOptions(IcBuildingDTO dto); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @Description 获取楼栋内单元 |
|
|
|
* @Param dto |
|
|
|
* @Return {@link Result<List<OptionResultDTO>>} |
|
|
@ -505,10 +513,16 @@ public interface GovOrgOpenFeignClient { |
|
|
|
@PostMapping("/gov/org/icbuildingunit/unitoption") |
|
|
|
Result<List<OptionResultDTO>> getUnitOptions(IcBuildingUnitDTO dto); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @param formDTO |
|
|
|
* @return 根据楼栋id、单元id获取房屋列表 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/ichouse/houseoption") |
|
|
|
Result<List<OptionResultDTO>> getHouseOption(@RequestBody HouseFormDTO formDTO); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @Description 获取网格下小区列表 |
|
|
|
* @Param dto |
|
|
|
* @Return {@link Result< List< OptionResultDTO>>} |
|
|
@ -519,23 +533,47 @@ public interface GovOrgOpenFeignClient { |
|
|
|
Result<List<OptionResultDTO>> getNeighborHoodOptions(IcNeighborHoodDTO dto); |
|
|
|
|
|
|
|
/** |
|
|
|
* @param idCard |
|
|
|
* @V23 |
|
|
|
* @param idCard 对应ic_house.OWNER_ID_CARD 房主身份证号 |
|
|
|
* @Description 查询房屋信息 |
|
|
|
* @author zxc |
|
|
|
* @date 2021/11/3 3:30 下午 |
|
|
|
* @return 返回该小区名+楼栋名+单元名+房屋名 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/ichouse/selecthouseinfobyidcard") |
|
|
|
Result<List<String>> selectHouseInfoByIdCard(@RequestParam("idCard") String idCard, @RequestParam("customerId") String customerId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @param id |
|
|
|
* @Description 根据房屋id查询,查询房屋信息;这个接口需要重构吧,怎么还查询两次。 |
|
|
|
*/ |
|
|
|
@GetMapping("/gov/org/ichouse/{id}") |
|
|
|
Result<IcHouseDTO> get(@PathVariable("id") String id); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @param buildingIdList |
|
|
|
* @return 根据楼栋id,查询楼栋信息 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/building/buildinglistbyids") |
|
|
|
Result<List<BuildingResultDTO>> buildingListByIds(@RequestBody List<String> buildingIdList); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @param buildingIdList |
|
|
|
* @param pageNo |
|
|
|
* @param pageSize |
|
|
|
* @return 分页查询楼栋信息 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/building/buildinglistbyidsPage/{pageNo}/{pageSize}") |
|
|
|
Result<BuildingResultPagedDTO> buildinglistbyidsPage(@RequestBody List<String> buildingIdList, @PathVariable("pageNo") Integer pageNo, @PathVariable("pageSize") Integer pageSize); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @param ids |
|
|
|
* @Description 根据小区id查询小区信息 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/icneighborhood/getlistbyids") |
|
|
|
Result<List<IcNeighborHoodDTO>> getListByIds(@RequestBody List<String> ids); |
|
|
|
|
|
|
@ -555,7 +593,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据ID查询楼栋信息 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param id |
|
|
|
* @return |
|
|
|
*/ |
|
|
@ -564,7 +602,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* 通过ID查询小区信息 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param id |
|
|
|
* @return |
|
|
|
*/ |
|
|
@ -587,6 +625,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
@RequestParam("orgType") String orgType); |
|
|
|
|
|
|
|
/** |
|
|
|
* @V23 |
|
|
|
* @Author sun |
|
|
|
* @Description 查询组织、网格、小区、楼栋、单元、房屋信息 |
|
|
|
**/ |
|
|
@ -595,7 +634,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* 查询单元 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param id |
|
|
|
* @return |
|
|
|
*/ |
|
|
@ -614,7 +653,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* Desc: 根据身份证查询房屋名 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param idCards |
|
|
|
* @author zxc |
|
|
|
* @date 2022/4/12 16:42 |
|
|
@ -624,7 +663,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* Desc: 房屋更新 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param formDTO |
|
|
|
* @author zxc |
|
|
|
* @date 2022/5/11 09:46 |
|
|
@ -643,7 +682,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据houseId查询数据 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param houseId |
|
|
|
* @return com.epmet.commons.tools.utils.Result<com.epmet.dto.result.HouseAgencyInfoResultDTO> |
|
|
|
* @author LZN |
|
|
@ -661,7 +700,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
|
|
|
|
/** |
|
|
|
* 根据房屋编码查询房屋信息 |
|
|
|
* |
|
|
|
* @V23 |
|
|
|
* @param houseCode |
|
|
|
* @return com.epmet.commons.tools.utils.Result<com.epmet.dto.IcHouseDTO> |
|
|
|
* @author work@yujt.net.cn |
|
|
@ -677,6 +716,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
* @author wangtong |
|
|
|
* @date 2022/6/10 13:27 |
|
|
|
* @params [dto] |
|
|
|
* @V23 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/house/getHomeInfoByHouseCode") |
|
|
|
Result<HouseInfoResultDTO> getHomeInfoByHouseCode(CommonHouseFormDTO dto); |
|
|
@ -685,6 +725,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
* desc:根据房屋id更新 屋内的居民数量 |
|
|
|
* @param paramList |
|
|
|
* @return |
|
|
|
* @V23 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/ichouse/updateIcHouseResiNumber") |
|
|
|
Result<Integer> updateIcHouseResiNumber(List<Map<String,Object>> paramList); |
|
|
@ -706,6 +747,7 @@ public interface GovOrgOpenFeignClient { |
|
|
|
* @Return {@link Result< List<HouseInfoDTO>>} |
|
|
|
* @Author zhaoqifeng |
|
|
|
* @Date 2022/7/20 9:52 |
|
|
|
* @V23 |
|
|
|
*/ |
|
|
|
@PostMapping("/gov/org/ichouse/getOwnerHouseList") |
|
|
|
Result<List<HouseInfoDTO>> getOwnerHouseList(@RequestBody IcHouseDTO formDTO); |
|
|
|