java110
2023-05-22 c2e69ffe6a0615fbc5a37647c0d14a30c78a58a1
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
39
40
41
42
43
44
45
46
47
48
49
package com.java110.report.statistics;
 
import com.java110.dto.RoomDto;
import com.java110.dto.owner.OwnerDto;
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);
 
 
    /**
     * 查询 业主数量
     * @param queryStatisticsDto
     * @return
     */
    long getOwnerCount(QueryStatisticsDto queryStatisticsDto);
 
    /**
     * 查询业主信息
     * @param queryStatisticsDto
     * @return
     */
    List<OwnerDto> getOwnerInfo(QueryStatisticsDto queryStatisticsDto);
}