Your Name
2023-07-04 d3e23e26fcfc17e770fca7c29b290ef5082e5734
service-report/src/main/java/com/java110/report/statistics/impl/FeeStatisticsImpl.java
@@ -271,4 +271,37 @@
        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);
    }
}