java110
2023-05-16 9005d833c8d03f17d6a84969ad9bf7595ef0023b
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
53
54
55
56
57
58
59
60
package com.java110.report.statistics;
 
 
import com.java110.dto.report.QueryStatisticsDto;
 
/**
 * 费用统计类
 */
public interface IFeeStatistics {
 
    /**
     * 查询历史 欠费功能
     *
     * @return
     */
    double getHisMonthOweFee(QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 查询 当月欠费
     *
     * @param queryFeeStatisticsDto
     * @return
     */
    double getCurMonthOweFee(QueryStatisticsDto queryFeeStatisticsDto);
 
 
    /**
     * 欠费追回
     *
     * @param queryFeeStatisticsDto
     * @return
     */
    double getHisReceivedFee(QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 预交费用
     *
     * @param queryFeeStatisticsDto
     * @return
     */
    double getPreReceivedFee(QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 查询实收数据
     *
     * @param queryFeeStatisticsDto
     * @return
     */
    double getReceivedFee(QueryStatisticsDto queryFeeStatisticsDto);
 
    /**
     * 查询欠费户数
     *
     * @param queryStatisticsDto
     * @return
     */
    int getOweRoomCount(QueryStatisticsDto queryStatisticsDto);
 
    double getCurReceivableFee(QueryStatisticsDto queryStatisticsDto);
}