Your Name
2023-08-26 7958f1dddb8a7f4e70d232b07a7703955ecedae0
service-fee/src/main/java/com/java110/fee/feeMonth/IPayFeeMonth.java
@@ -1,5 +1,7 @@
package com.java110.fee.feeMonth;
import java.util.List;
/**
 * 费用离散为 月 应收实收数据
 * <p>
@@ -16,6 +18,13 @@
    void doGeneratorOrRefreshFeeMonth(String feeId, String communityId);
    /**
     * 批量生成 月数据
     * @param feeIds
     * @param communityId
     */
     void doGeneratorFeeMonths(List<String> feeIds, String communityId);
    /**
     * 所有费用 生成月数据
     *
     * @param communityId
@@ -30,4 +39,11 @@
     */
    void payFeeDetailRefreshFeeMonth(String feeId,String detailId,String communityId);
    /**
     * 删除 费用离散月
     * @param feeId
     * @param communityId
     */
    void deleteFeeMonth(String feeId,String communityId);
}