Helius
2022-05-11 562ac2c071de933e04aec1fb32ee98c7a85d448d
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
package cc.mrbird.febs.mall.service;
 
/**
 * @author wzy
 * @date 2022-05-10
 **/
public interface IMemberProfitService {
 
    /**
     * 静态分红
     */
    void staticProfit();
 
    /**
     * 动态分红
     */
    void dynamicProfit(Long orderId);
 
    /**
     * 代理分红
     */
    void agentProfit();
 
    /**
     * 排名分红
     */
    void rankProfit();
}