| | |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 基础报表统计 实现类 |
| | | */ |
| | |
| | | public double getCurMonthOweFee(QueryStatisticsDto queryFeeStatisticsDto) { |
| | | return reportFeeStatisticsInnerServiceSMOImpl.getCurMonthOweFee(queryFeeStatisticsDto); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查询当月应收 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public double getCurReceivableFee(QueryStatisticsDto queryStatisticsDto) { |
| | | return reportFeeStatisticsInnerServiceSMOImpl.getCurReceivableFee(queryStatisticsDto); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | /** |
| | |
| | | public int getOweRoomCount(QueryStatisticsDto queryStatisticsDto) { |
| | | return reportFeeStatisticsInnerServiceSMOImpl.getOweRoomCount(queryStatisticsDto); |
| | | } |
| | | |
| | | @Override |
| | | public long getFeeRoomCount(QueryStatisticsDto queryStatisticsDto) { |
| | | return reportFeeStatisticsInnerServiceSMOImpl.getFeeRoomCount(queryStatisticsDto); |
| | | } |
| | | |
| | | /** |
| | | * 楼栋收费率信息统计 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<Map> getFloorFeeSummary(QueryStatisticsDto queryStatisticsDto) { |
| | | return reportFeeStatisticsInnerServiceSMOImpl.getFloorFeeSummary(queryStatisticsDto); |
| | | } |
| | | |
| | | } |