fix
Hentua
2023-05-08 0a0ddc2087fa31cafb0589cf5c826f7caef1914e
src/main/java/cc/mrbird/febs/mall/service/IMemberProfitService.java
@@ -8,35 +8,16 @@
 **/
public interface IMemberProfitService {
    /**
     * 静态分红
     */
    void staticProfit();
    /**
     * 动态分红
     */
    void dynamicProfit(Long orderId);
    void directProfit(Long orderId);
    void dynamicProfit(Long orderId, Integer isNormal);
    /**
     * 代理分红
     */
    void agentProfit(Date date);
    void agentProfit(Integer type);
    /**
     * 排名分红
     */
    void rankProfit();
    void allInternetProfit();
    /**
     * 感恩奖
     */
    void thankfulProfit();
    /**
     * 店补/董事
     */
    void storeAndDirectorProfit(Date profitDate);
    void orderBonus(Long orderId);
}