Helius
2022-05-19 f681a6a7852eb7c868ea539155861729c3e99da1
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
package cc.mrbird.febs.mall.service;
 
import java.util.Date;
 
/**
 * @author wzy
 * @date 2022-05-10
 **/
public interface IMemberProfitService {
 
    /**
     * 静态分红
     */
    void staticProfit();
 
    /**
     * 动态分红
     */
    void dynamicProfit(Long orderId);
 
    /**
     * 代理分红
     */
    void agentProfit(Date date);
 
    /**
     * 排名分红
     */
    void rankProfit();
 
    /**
     * 感恩奖
     */
    void thankfulProfit();
}