Your Name
2023-06-01 e144b12f3cf3460bb726b5c47f91ab359f073d47
service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
@@ -31,6 +31,7 @@
    /**
     * 查询 当月欠费
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -41,6 +42,7 @@
    /**
     * 查询总欠费
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -52,6 +54,7 @@
    /**
     * 查询当月应收
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -61,10 +64,9 @@
    }
    /**
     * 查询 欠费追回
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -75,6 +77,7 @@
    /**
     * 查询 预交费用
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -85,6 +88,7 @@
    /**
     * 查询 实收费用
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -105,6 +109,7 @@
    /**
     * 楼栋收费率信息统计
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -115,6 +120,7 @@
    /**
     * 费用项收费率信息统计
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -135,6 +141,7 @@
    /**
     * 查询 业主明细表
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -145,6 +152,7 @@
    /**
     * 优惠金额
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -155,6 +163,7 @@
    /**
     * 滞纳金
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -175,6 +184,7 @@
    /**
     * 查询临时车收入
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -208,4 +218,26 @@
        return reportFeeStatisticsInnerServiceSMOImpl.getReceivedFeeByFloor(queryStatisticsDto);
    }
    /**
     * 收款方式统计
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public List<Map> getReceivedFeeByPrimeRate(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getReceivedFeeByPrimeRate(queryStatisticsDto);
    }
    /**
     * 根据楼栋查询欠费信息
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public List<Map> getOweFeeByFloor(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getOweFeeByFloor(queryStatisticsDto);
    }
}