Your Name
2023-05-25 b6987665e010050ca60b0404820faea59c831267
service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
@@ -6,6 +6,9 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
/**
 * 基础报表统计 实现类
 */
@@ -90,4 +93,64 @@
        return reportFeeStatisticsInnerServiceSMOImpl.getFeeRoomCount(queryStatisticsDto);
    }
    /**
     * 楼栋收费率信息统计
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public List<Map> getFloorFeeSummary(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getFloorFeeSummary(queryStatisticsDto);
    }
    /**
     * 费用项收费率信息统计
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public List<Map> getConfigFeeSummary(QueryStatisticsDto queryStatisticsDto) {
        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);
    }
}