java110
2023-05-22 ba7906241f787c72dc6b5342b8d873fbc203407d
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
29
30
31
32
33
34
35
36
37
38
package com.java110.report.statistics;
 
import com.java110.dto.RoomDto;
import com.java110.dto.report.QueryStatisticsDto;
 
import java.util.List;
 
/**
 * 基础数据统计
 */
public interface IBaseDataStatistics {
 
    /**
     * 查询房屋数
     * @param queryStatisticsDto
     * @return
     */
    long getRoomCount(QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询房屋
     * @param queryStatisticsDto
     * @return
     */
    List<RoomDto> getRoomInfo(QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询空闲房屋数
     * @param queryStatisticsDto
     * @return
     */
    long getFreeRoomCount(QueryStatisticsDto queryStatisticsDto);
 
 
 
 
 
}