| | |
| | | List<Map> infos = sqlSessionTemplate.selectList("baseDataStatisticsServiceDaoImpl.getReceivedRoomInfo", info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public int getOweRoomCount(Map info) { |
| | | List<Map> infos = sqlSessionTemplate.selectList("baseDataStatisticsServiceDaoImpl.getOweRoomCount", info); |
| | | if (infos.size() < 1) { |
| | | return 0; |
| | | } |
| | | |
| | | return Integer.parseInt(infos.get(0).get("count").toString()); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getOweRoomInfo(Map info) { |
| | | List<Map> infos = sqlSessionTemplate.selectList("baseDataStatisticsServiceDaoImpl.getOweRoomInfo", info); |
| | | return infos; |
| | | } |
| | | |
| | | @Override |
| | | public List<Map> getCommunityFeeDetailCount(Map info) { |
| | | List<Map> infos = sqlSessionTemplate.selectList("baseDataStatisticsServiceDaoImpl.getCommunityFeeDetailCount", info); |
| | | return infos; |
| | | } |
| | | } |