linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
src/main/java/org/springblade/modules/doorplateAddress/mapper/DoorplateAddressMapper.java
@@ -239,4 +239,35 @@
    * @return
    */
   Integer getNotHouseListCount(@Param("townName") String townName);
   /**
    * 查询网格范围表未绑定的地址表信息数量
    * @param townName
    * @return
    */
   Integer getNotBindGridRangeDoorListCount(@Param("townName") String townName,
                                  @Param("communityName") String communityName);
   /**
    * 查询所有未匹配的网格范围地址数据
    * @param townName
    * @param communityName
    * @return
    */
   List<DoorplateAddressEntity> getNotBindGridRangeDoorList(@Param("townName") String townName,
                                              @Param("communityName") String communityName);
   /**
    * 根据房屋id 查询对应的地址信息
    * @param houseId
    * @return
    */
   DoorplateAddressVO getDoorplateAddressDetailByHouseId(@Param("houseId") Long houseId);
   /**
    * 查询未入库的场所
    * @param townName
    * @return
    */
   Integer getNotPlaceListCount(@Param("townName") String townName);
}