java110
2021-02-02 89897b7c2dee5dd79b3cbdfe8c6dfaa0abcfd580
service-report/src/main/java/com/java110/report/dao/IReportFeeMonthStatisticsServiceDao.java
@@ -147,7 +147,11 @@
     * @return 费用月统计数量
     */
    int queryOweFeeDetailCount(Map info);
    Map queryPayFeeDetailCount(Map info);
    int queryDeadlineFeeCount(Map info);
    /**
     * 查询费用月统计信息(instance过程)
     * 根据bId 查询费用月统计信息
@@ -177,6 +181,11 @@
     * @throws DAOException DAO异常
     */
    List<Map> queryOweFeeDetail(Map info) throws DAOException;
    List<Map> queryPayFeeDetail(Map info) throws DAOException;
    List<Map> queryAllPayFeeDetail(Map info) throws DAOException;
    List<Map> queryDeadlineFee(Map info) throws DAOException;
    /**
@@ -188,7 +197,9 @@
     * @throws DAOException DAO异常
     */
    List<Map> queryPrePaymentCount(Map info) throws DAOException;
    List<Map> queryDeadlinePaymentCount(Map info) throws DAOException;
    /**
     * 查询预交费
     * 根据bId 查询费用月统计信息
@@ -200,4 +211,42 @@
    List<Map> queryOwePaymentCount(Map info) throws DAOException;
    /**
     * 查询 缴费已经结束 报表表还有欠费的数据
     * 根据bId 查询费用月统计信息
     *
     * @param info bId 信息
     * @return 费用月统计信息
     * @throws DAOException DAO异常
     */
    List<Map> queryFinishOweFee(Map info) throws DAOException;
    List<Map> queryAllPaymentCount(Map beanCovertMap);
    /**
     * 查询费用汇总表总金额
     *
     * @param beanCovertMap
     * @return
     */
    List<Map> queryAllFeeDetail(Map beanCovertMap);
    /**
     * 查询(优惠、减免、滞纳金、空置房打折、空置房减免等)总金额
     *
     * @param beanCovertMap
     * @return
     */
    List<Map> queryPayFeeDetailSum(Map beanCovertMap);
    /**
     * 查询费用配置信息(instance过程)
     * 根据bId 查询费用配置信息
     *
     * @param info bId 信息
     * @return 费用配置信息
     * @throws DAOException DAO异常
     */
    List<Map> getFeeConfigInfo(Map info) throws DAOException;
}