wuxw
2021-05-03 8b7ea207f4ee4e7ef6e0d518c06f4a4581850675
service-report/src/main/java/com/java110/report/dao/impl/ReportFeeMonthStatisticsServiceDaoImpl.java
@@ -402,5 +402,29 @@
        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 Object queryNoFeeRooms(Map info) {
        logger.debug("查询未收费房屋统计信息 入参 info : {}", info);
        List<Map> roomInfos =
                sqlSessionTemplate.selectList("reportFeeMonthStatisticsServiceDaoImpl.queryNoFeeRooms", info);
        return roomInfos;
    }
}