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
| 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 dynamicProfit(Long orderId, Integer isNormal);
|
| /**
| * 代理分红
| */
| void agentProfit(Date date);
|
| /**
| * 排名分红
| */
| void rankProfit();
|
| /**
| * 感恩奖
| */
| void thankfulProfit();
|
| /**
| * 店补/董事
| */
| void storeAndDirectorProfit(Date profitDate);
| }
|
|