wuxw
2019-08-01 af16d4b63bafd5ac7ccabdabc6a8017abf081759
UserService/src/main/java/com/java110/user/dao/IOwnerServiceDao.java
@@ -73,4 +73,45 @@
     */
    int queryOwnersCount(Map info);
    /**
     * 查询业主总数
     *
     * @param info 业主信息
     * @return 业主数量
     */
    int queryOwnersCountByCondition(Map info);
    /**
     * 查询业主信息(instance)
     *
     * @param info bId 信息
     * @return List<Map>
     * @throws DAOException DAO异常
     */
     List<Map> getOwnerInfoByCondition(Map info) throws DAOException;
    /**
     * 查询没有入驻的 业主数量
     * @param info 信息
     * @return 未入驻业主数量
     */
     int queryNoEnterRoomOwnerCount(Map info);
    /**
     * 根据房屋查询业主信息
     * @param info 房屋信息
     * @return 业主信息
     * @throws DAOException 异常信息
     */
     List<Map> queryOwnersByRoom(Map info) throws DAOException;
    /**
     * 根据停车位查询业主信息
     * @param info 查询条件
     * @return 业主信息
     * @throws DAOException 异常信息
     */
    List<Map> queryOwnersByParkingSpace(Map info) throws DAOException;
}