mrzcc
2020-02-10 4f9c122f237fbee16d5ef9c602b6db95d28ed7b0
UserService/src/main/java/com/java110/user/dao/IOwnerServiceDao.java
@@ -1,7 +1,7 @@
package com.java110.user.dao;
import com.java110.common.exception.DAOException;
import com.java110.utils.exception.DAOException;
import java.util.List;
import java.util.Map;
@@ -55,6 +55,15 @@
     */
    List<Map> getOwnerInfo(Map info) throws DAOException;
    /**
     * 查询业主信息(instance过程)
     * 根据bId 查询业主信息
     * @param info bId 信息
     * @return 业主信息
     * @throws DAOException DAO异常
     */
    int getOwnerInfoCount(Map info) throws DAOException;
    /**
@@ -73,4 +82,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;
}