Blame view

service-fee/src/main/java/com/java110/fee/feeMonth/IPayFeeMonth.java 1.23 KB
88e030b7   王彪总   init project
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.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 feeIds
       * @param communityId
       */
      void doGeneratorOweFees(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);
  
  }