| | |
| | | |
| | | /** |
| | | * 查询欠费 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询收费房屋数 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询楼栋费用统计信息 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 费用项 费用统计信息 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询对象明细表(数量) |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询对象明细表 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询业主对象明细表 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 优惠金额 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 滞纳金 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 预存账户 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 扣款账户 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询临时车费用收入 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询退款押金 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 退款订单数 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 退款金额 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 充电桩充电金额 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 按楼栋计算实收 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getReceivedFeeByFloor(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询 收款方式统计 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getReceivedFeeByPrimeRate(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 根据楼栋查询欠费信息 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getOweFeeByFloor(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 计算对象欠费明细 |
| | | * |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getObjOweFee(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | long getReceivedRoomCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | double getReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | long getHisOweReceivedRoomCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | double getHisOweReceivedRoomAmount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | /** |
| | | * 查询实收 |
| | | * @param queryStatisticsDto |
| | | * @return |
| | | */ |
| | | List<Map> getObjReceivedFee(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | long getMonthReceivedDetailCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | List<Map> getMonthReceivedDetailInfo(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | long getMonthOweDetailCount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | List<Map> getMonthOweDetailInfo(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | double getMonthOweDetailAmount(QueryStatisticsDto queryStatisticsDto); |
| | | |
| | | double getMonthReceivedDetailAmount(QueryStatisticsDto queryStatisticsDto); |
| | | } |