old mode 100644
new mode 100755
| | |
| | | return businessReportFeeMonthStatisticsInfos; |
| | | } |
| | | |
| | | @Override |
| | | public int queryNoFeeRoomsCount(Map info) { |
| | | logger.debug("查询未收费房屋统计数据 入参 info : {}", info); |
| | | |
| | | List<Map> roomInfos = |
| | | sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryNoFeeRoomsCount", info); |
| | | if (roomInfos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(roomInfos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryNoFeeRooms(Map info) { |
| | | logger.debug("查询未收费房屋统计信息 入参 info : {}", info); |
| | | |
| | | List<Map> roomInfos = |
| | | sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryNoFeeRooms", info); |
| | | |
| | | return roomInfos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryPayFeeDeposit(Map info) { |
| | | logger.debug("查询押金统计信息 入参 info : {}", info); |
| | | |
| | | List<Map> deposits = sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryPayFeeDeposit", info); |
| | | |
| | | return deposits; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> queryFeeDepositAmount(Map info) { |
| | | logger.debug("查询押金退费总金额信息 入参 info : {}", info); |
| | | |
| | | List<Map> deposits = sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryFeeDepositAmount", info); |
| | | |
| | | return deposits; |
| | | } |
| | | |
| | | } |