| | |
| | | |
| | | import com.java110.dto.report.QueryStatisticsDto; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 费用统计类 |
| | | */ |
| | |
| | | */ |
| | | double getReceivedFee(QueryStatisticsDto queryFeeStatisticsDto); |
| | | |
| | | /** |
| | | * 查询欠费户数 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | int getOweRoomCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | double getCurReceivableFee(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询收费房屋数 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | long getFeeRoomCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询楼栋费用统计信息 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getFloorFeeSummary(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 费用项 费用统计信息 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getConfigFeeSummary(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询对象明细表(数量) |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | int getObjFeeSummaryCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询对象明细表 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getObjFeeSummary(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询业主对象明细表 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getOwnerFeeSummary(QueryStatisticsDto queryStatisticsDto); |
| | | } |