KKSU
2025-01-03 7187a0f496f9b55f67f2be9bc3a111d3a1bc2d0b
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package cc.mrbird.febs.mall.service;
 
import java.util.Date;
 
/**
 * @author wzy
 * @date 2022-05-10
 **/
public interface IMemberProfitService {
 
    /**
     * 静态分红
     */
    void staticProfit(Date date);
 
    /**
     * 动态分红
     */
    void dynamicProfit(Long orderId);
 
    void dynamicProfit(Long orderId, Integer isNormal);
 
    /**
     * 代理分红
     */
    void agentProfit(Date date);
 
    /**
     * 排名分红
     */
    void rankProfit();
 
    /**
     * 感恩奖
     */
    void thankfulProfit(Date profitDate);
 
    /**
     * 店补/董事
     */
    void storeAndDirectorProfit(Date profitDate);
 
    void getOrderCoupon(Long orderId);
 
    void updateMemberLevel();
 
    void updateRunScore();
 
    void updateMemberCoin();
 
    void updateMemberScore();
 
    void updateNodeScore();
}