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
     */
@@ -39,9 +40,21 @@
        return reportFeeStatisticsInnerServiceSMOImpl.getCurMonthOweFee(queryFeeStatisticsDto);
    }
    /**
     * 查询总欠费
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public double getOweFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getOweFee(queryStatisticsDto);
    }
    /**
     * 查询当月应收
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -51,10 +64,9 @@
    }
    /**
     * 查询 欠费追回
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -65,6 +77,7 @@
    /**
     * 查询 预交费用
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -75,6 +88,7 @@
    /**
     * 查询 实收费用
     *
     * @param queryFeeStatisticsDto
     * @return
     */
@@ -95,6 +109,7 @@
    /**
     * 楼栋收费率信息统计
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -105,6 +120,7 @@
    /**
     * 费用项收费率信息统计
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -113,4 +129,115 @@
        return reportFeeStatisticsInnerServiceSMOImpl.getConfigFeeSummary(queryStatisticsDto);
    }
    @Override
    public int getObjFeeSummaryCount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getObjFeeSummaryCount(queryStatisticsDto);
    }
    @Override
    public List<Map> getObjFeeSummary(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getObjFeeSummary(queryStatisticsDto);
    }
    /**
     * 查询 业主明细表
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public List<Map> getOwnerFeeSummary(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getOwnerFeeSummary(queryStatisticsDto);
    }
    /**
     * 优惠金额
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public double getDiscountFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getDiscountFee(queryStatisticsDto);
    }
    /**
     * 滞纳金
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public double getLateFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getLateFee(queryStatisticsDto);
    }
    @Override
    public double getPrestoreAccount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getPrestoreAccount(queryStatisticsDto);
    }
    @Override
    public double getWithholdAccount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getWithholdAccount(queryStatisticsDto);
    }
    /**
     * 查询临时车收入
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public double getTempCarFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getTempCarFee(queryStatisticsDto);
    }
    @Override
    public double geRefundDeposit(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.geRefundDeposit(queryStatisticsDto);
    }
    @Override
    public double geRefundOrderCount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.geRefundOrderCount(queryStatisticsDto);
    }
    @Override
    public double geRefundFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.geRefundFee(queryStatisticsDto);
    }
    @Override
    public double getChargeFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getChargeFee(queryStatisticsDto);
    }
    @Override
    public List<Map> getReceivedFeeByFloor(QueryStatisticsDto queryStatisticsDto) {
        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);
    }
}