java110
2023-07-26 a451b135bbcc132761d6f310c000d5bd651b9ff8
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.java110.report.dao;
 
import java.util.List;
import java.util.Map;
 
public interface IReportFeeMonthStatisticsPrepaymentServiceDao {
 
    void saveReportFeeMonthStatisticsPrepaymentInfo(Map info);
 
    void updateReportFeeMonthStatisticsPrepaymentInfo(Map info);
 
    int queryReportFeeMonthStatisticsPrepaymentCount(Map info);
 
    void deleteReportFeeMonthStatisticsPrepaymentInfo(Map info);
 
    /**
     * 查询预付期费用月统计信息(instance过程)
     * 根据bId 查询预付期费用月统计信息
     *
     * @param info bId 信息
     * @return 预付期费用月统计信息
     */
    List<Map> getReportFeeMonthStatisticsPrepaymentInfo(Map info);
 
    List<Map> queryPrepaymentConfigs(Map info);
 
    List<Map> queryAllPrepaymentConfigs(Map info);
 
    List<Map> queryAllPrepaymentDiscounts(Map info);
 
    /**
     * 修改预付费费用月统计信息
     *
     * @param info 修改信息
     */
    void updateReportFeeMonthStatisticsPrepaymentOwe(Map info);
 
    /**
     * 查询无效的数据
     *
     * @param info
     * @return
     */
    List<Map> queryInvalidFeeMonthStatisticsPrepayment(Map info);
 
    int deleteInvalidFee(Map info);
 
    /**
     * 查询当月实收
     *
     * @param beanCovertMap
     * @return
     */
    double getReceivedAmountByMonth(Map beanCovertMap);
 
    /**
     * 查询 缴费已经结束 报表表还有欠费的数据
     * 根据bId 查询预付期费用月统计信息
     *
     * @param info bId 信息
     * @return 预付期费用月统计信息
     */
    List<Map> queryFinishOweFee(Map info);
 
    List<Map> queryPrePayment(Map info);
 
    Map queryPayFeeDetailCount(Map info);
 
    Map queryReportCollectFeesCount(Map info);
 
    List<Map> queryPayFeeDetail(Map info);
 
    List<Map> queryNewPayFeeDetail(Map info);
 
    List<Map> queryAllPayFeeDetail(Map info);
 
    List<Map> queryPayFeeDetailSum(Map beanCovertMap);
 
    List<Map> getFeeConfigInfo(Map info);
 
    List<Map> queryRoomAndParkingSpace(Map info);
 
}