java110
2023-07-11 212aa4ae1f54fe4d3e51b9695224f9f86cd1bd22
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
     */
@@ -125,6 +141,7 @@
    /**
     * 查询 业主明细表
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -135,6 +152,7 @@
    /**
     * 优惠金额
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -145,6 +163,7 @@
    /**
     * 滞纳金
     *
     * @param queryStatisticsDto
     * @return
     */
@@ -153,4 +172,136 @@
        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);
    }
    /**
     * 计算对象欠费明细
     *
     * @param queryStatisticsDto
     * @return
     */
    @Override
    public List<Map> getObjOweFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getObjOweFee(queryStatisticsDto);
    }
    @Override
    public long getReceivedRoomCount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getReceivedRoomCount(queryStatisticsDto);
    }
    @Override
    public double getReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getReceivedRoomAmount(queryStatisticsDto);
    }
    @Override
    public long getHisOweReceivedRoomCount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getHisOweReceivedRoomCount(queryStatisticsDto);
    }
    @Override
    public double getHisOweReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getHisOweReceivedRoomAmount(queryStatisticsDto);
    }
    @Override
    public List<Map> getObjReceivedFee(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getObjReceivedFee(queryStatisticsDto);
    }
    @Override
    public long getMonthReceivedDetailCount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getMonthReceivedDetailCount(queryStatisticsDto);
    }
    @Override
    public List<Map> getMonthReceivedDetailInfo(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getMonthReceivedDetailInfo(queryStatisticsDto);
    }
    @Override
    public long getMonthOweDetailCount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getMonthOweDetailCount(queryStatisticsDto);
    }
    @Override
    public List<Map> getMonthOweDetailInfo(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getMonthOweDetailInfo(queryStatisticsDto);
    }
    @Override
    public double getMonthOweDetailAmount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getMonthOweDetailAmount(queryStatisticsDto);
    }
    @Override
    public double getMonthReceivedDetailAmount(QueryStatisticsDto queryStatisticsDto) {
        return reportFeeStatisticsInnerServiceSMOImpl.getMonthReceivedDetailAmount(queryStatisticsDto);
    }
}