package com.java110.report.statistics; import com.java110.dto.report.QueryStatisticsDto; /** * 基础数据统计 */ public interface IBaseDataStatistics { /** * 查询房屋数 * @param queryStatisticsDto * @return */ long getRoomCount(QueryStatisticsDto queryStatisticsDto); /** * 查询空闲房屋数 * @param queryStatisticsDto * @return */ long getFreeRoomCount(QueryStatisticsDto queryStatisticsDto); }