| | |
| | | * @return |
| | | */ |
| | | List<String> getGridListByUserId(@Param("userId") String userId); |
| | | |
| | | /** |
| | | * 查询对应的房屋地址code(更加网格编号集合) |
| | | * @param gridCodeList |
| | | * @return |
| | | */ |
| | | List<String> getAddressCodeListByGridCodeList(@Param("communityCode")String communityCode,@Param("gridCodeList")List<String> gridCodeList); |
| | | |
| | | /** |
| | | * 根据社区编号及网格编号集合查询对应的网格信息 |
| | | * @param communityCode |
| | | * @param gridCodeList |
| | | * @return |
| | | */ |
| | | List<GridVO> getGridListByComAndList(@Param("communityCode")String communityCode, |
| | | @Param("gridCodeList") List<String> gridCodeList); |
| | | |
| | | /** |
| | | * 根据社区名称和网格名称查询对应的网格信息 |
| | | * @param communityName |
| | | * @param gridName |
| | | * @return |
| | | */ |
| | | GridEntity getGridInfoByParam(@Param("communityName")String communityName,@Param("gridName") String gridName); |
| | | } |