Your Name
2023-08-26 7958f1dddb8a7f4e70d232b07a7703955ecedae0
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.fee.feeMonth;
 
import java.util.List;
 
/**
 * 费用离散为 月 应收实收数据
 * <p>
 * 主要是为了报表统计好统计 而设计的
 */
public interface IPayFeeMonth {
 
    /**
     * 单个费用生成或者刷新 离散月
     *
     * @param feeId
     * @param communityId
     */
    void doGeneratorOrRefreshFeeMonth(String feeId, String communityId);
 
    /**
     * 批量生成 月数据
     * @param feeIds
     * @param communityId
     */
     void doGeneratorFeeMonths(List<String> feeIds, String communityId);
 
    /**
     * 所有费用 生成月数据
     *
     * @param communityId
     */
    void doGeneratorOrRefreshAllFeeMonth(String communityId);
 
    /**
     * 缴费 离散数据
     * @param feeId
     * @param detailId
     * @param communityId
     */
    void payFeeDetailRefreshFeeMonth(String feeId,String detailId,String communityId);
 
    /**
     * 删除 费用离散月
     * @param feeId
     * @param communityId
     */
    void deleteFeeMonth(String feeId,String communityId);
 
}