Your Name
2023-05-25 b6987665e010050ca60b0404820faea59c831267
service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
@@ -133,4 +133,24 @@
        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);
    }
}