| | |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getCommunityMaintainanceAnalysis(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getCommunityItemInAnalysis(@RequestBody Map info) { |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getCommunityItemInAnalysis(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getCommunityItemOutAnalysis(@RequestBody Map info) { |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getCommunityItemOutAnalysis(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getCommunityCarInAnalysis(@RequestBody Map info) { |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getCommunityCarInAnalysis(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getCommunityPersonInAnalysis(@RequestBody Map info) { |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getCommunityPersonInAnalysis(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getCommunityContractAnalysis(@RequestBody Map info) { |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getCommunityContractAnalysis(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getPropertyFeeSummaryData(@RequestBody Map info) { |
| | | int page = Integer.parseInt(info.get("page").toString()); |
| | | int row = Integer.parseInt(info.get("row").toString()); |
| | | |
| | | if (page != PageDto.DEFAULT_PAGE) { |
| | | info.put("page",(page - 1) * row); |
| | | info.put("row", row); |
| | | } |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.getPropertyFeeSummaryData(info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public int getPropertyFeeSummaryDataCount(@RequestBody Map info) { |
| | | int count = baseDataStatisticsServiceDaoImpl.getPropertyFeeSummaryDataCount(info); |
| | | return count; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> computeEveryMonthFee(@RequestBody Map info) { |
| | | List<Map> infos = baseDataStatisticsServiceDaoImpl.computeEveryMonthFee(info); |
| | | return infos; |
| | | } |
| | | } |