Your Name
2023-07-04 18024bcd453ecf43b5df1d6750dfdde959c7d618
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
50
51
52
package com.java110.report.dao;
 
import java.util.List;
import java.util.Map;
 
public interface IBaseDataStatisticsServiceDao {
    /**
     * 查询房屋数量
     *
     * @param info
     * @return
     */
    int getRoomCount(Map info);
 
    /**
     * 查询房屋信息
     *
     * @param info
     * @return
     */
    List<Map> getRoomInfo(Map info);
 
    /**
     * 查询实收房屋数
     *
     * @param info
     * @return
     */
    int getReceivedRoomCount(Map info);
 
    /**
     * 查询实收房屋
     *
     * @param info
     * @return
     */
    List<Map> getReceivedRoomInfo(Map info);
 
    /**
     * 查询欠费房屋总数
     * @param info
     * @return
     */
    int getOweRoomCount(Map info);
 
    /**
     * 查询欠费房屋数
     * @param info
     * @return
     */
    List<Map> getOweRoomInfo(Map info);
}