| | |
| | | |
| | | @Override |
| | | public ResponseEntity<String> queryReportFeeSummary(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto) { |
| | | reportFeeMonthStatisticsDto.setFeeYear(DateUtil.getYear()+""); |
| | | reportFeeMonthStatisticsDto.setFeeMonth(DateUtil.getMonth()+""); |
| | | int count = reportFeeMonthStatisticsInnerServiceSMOImpl.queryReportFeeSummaryCount(reportFeeMonthStatisticsDto); |
| | | |
| | | List<ReportFeeMonthStatisticsDto> reportFeeMonthStatisticsDtos = new ArrayList<>(); |
| | |
| | | |
| | | @Override |
| | | public ResponseEntity<String> queryReportFloorUnitFeeSummary(ReportFeeMonthStatisticsDto reportFeeMonthStatisticsDto) { |
| | | reportFeeMonthStatisticsDto.setFeeYear(DateUtil.getYear()+""); |
| | | reportFeeMonthStatisticsDto.setFeeMonth(DateUtil.getMonth()+""); |
| | | int count = reportFeeMonthStatisticsInnerServiceSMOImpl.queryReportFloorUnitFeeSummaryCount(reportFeeMonthStatisticsDto); |
| | | |
| | | List<ReportFeeMonthStatisticsDto> reportFeeMonthStatisticsDtos = null; |