ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TBillServiceImpl.java
@@ -501,5 +501,15 @@ return true; } @Override public BillStatisticsDto statistics() { BillStatisticsDto dto = new BillStatisticsDto(); dto.setRent(getBaseMapper().statisticsAllRent()); dto.setNopay(getBaseMapper().statisticsNoPay()); dto.setPayed(getBaseMapper().statisticsPayed()); dto.setOverdue(getBaseMapper().statisticsOverdue()); return dto; } }