| | |
| | | } |
| | | |
| | | @Override |
| | | public BillStatisticsDto statistics() { |
| | | public BillStatisticsDto statistics(String busDeptId) { |
| | | BillStatisticsDto dto = new BillStatisticsDto(); |
| | | dto.setRent(getBaseMapper().statisticsAllRent()); |
| | | dto.setNopay(getBaseMapper().statisticsNoPay()); |
| | | dto.setPayed(getBaseMapper().statisticsPayed()); |
| | | dto.setOverdue(getBaseMapper().statisticsOverdue()); |
| | | dto.setRent(getBaseMapper().statisticsAllRent(busDeptId)); |
| | | dto.setNopay(getBaseMapper().statisticsNoPay(busDeptId)); |
| | | dto.setPayed(getBaseMapper().statisticsPayed(busDeptId)); |
| | | dto.setOverdue(getBaseMapper().statisticsOverdue(busDeptId)); |
| | | return dto; |
| | | } |
| | | |