java110
2023-05-30 a13573d5ef8d16f4bc2535a3c89c2891e6f5b56c
service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
@@ -39,6 +39,16 @@
        return reportFeeStatisticsInnerServiceSMOImpl.getCurMonthOweFee(queryFeeStatisticsDto);
    }
    /**
     * 查询总欠费
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public double getOweFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getOweFee(queryStatisticsDto);
    }
    /**
     * 查询当月应收
@@ -113,4 +123,84 @@
        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);
    }
}