KKSU
2024-05-20 487436c06905bf5599d062990c90d5cc4b383733
src/main/java/cc/mrbird/febs/mall/service/IMemberProfitService.java
@@ -1,5 +1,8 @@
package cc.mrbird.febs.mall.service;
import cc.mrbird.febs.mall.entity.MallMember;
import java.math.BigDecimal;
import java.util.Date;
/**
@@ -11,12 +14,14 @@
    /**
     * 静态分红
     */
    void staticProfit();
    void staticProfit(Date date);
    /**
     * 动态分红
     */
    void dynamicProfit(Long orderId);
    void dynamicProfit(Long orderId, Integer isNormal);
    /**
     * 代理分红
@@ -31,5 +36,34 @@
    /**
     * 感恩奖
     */
    void thankfulProfit();
    void thankfulProfit(Date profitDate);
    /**
     * 店补/董事
     */
    void storeAndDirectorProfit(Date profitDate);
    void scorePool();
    void agentPerkJob(Date profitDate);
    void offLinePerkJob(Date profitDate);
    void teamEqualsPerkJob(Date profitDate);
    void mqPerkRetryJob();
    void scoreRecordReleaseJob();
    void achieveReleaseJob();
    void selaHalfVoucher(String price);
    void fcmNFTExchangeMsg(String cnt);
    void fcmOrderSellInsureMsg(Long sellRecordId);
    void fcmOrderBuyCancelMsg(Long buyRecordId);
    void createPerk(MallMember mallMember, BigDecimal basicPerkDirect);
}