wuxw
2019-08-01 2f73a671db8bf132baaba12a5c2a9c3b611589e9
CommunityService/src/main/java/com/java110/community/dao/IRoomServiceDao.java
@@ -88,6 +88,14 @@
     */
    int queryRoomsWithOutSellByCommunityIdCount(Map info);
    /**
     * 查询小区房屋(未销售)总数
     *
     * @param info 小区房屋信息
     * @return 小区房屋数量
     */
    int queryRoomsWithSellByCommunityIdCount(Map info);
    /**
     * 查询小区房屋信息
@@ -100,6 +108,16 @@
    /**
     * 根据业主查询小区房屋信息
     * 根据bId 查询小区房屋信息
     *
     * @param info bId 信息
     * @return 小区房屋信息
     */
    List<Map> getRoomInfoByOwner(Map info);
    /**
     * 查询小区房屋信息
     * 根据bId 查询小区房屋信息
     *
@@ -108,4 +126,14 @@
     */
    List<Map> getRoomInfoWithOutSellByCommunityId(Map info);
    /**
     * 查询小区房屋信息
     * 根据bId 查询小区房屋信息
     *
     * @param info bId 信息
     * @return 小区房屋信息
     */
    List<Map> getRoomInfoWithSellByCommunityId(Map info);
}