java110
2023-05-12 7b90160465723602365521fa85e233680b60dd5e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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);
 
 
 
 
 
}