fix
Hentua
2023-05-08 0a0ddc2087fa31cafb0589cf5c826f7caef1914e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cc.mrbird.febs.mall.service;
 
import java.util.Date;
 
/**
 * @author wzy
 * @date 2022-05-10
 **/
public interface IMemberProfitService {
 
    void directProfit(Long orderId);
 
    void dynamicProfit(Long orderId, Integer isNormal);
 
    /**
     * 代理分红
     */
    void agentProfit(Integer type);
 
    void allInternetProfit();
 
    void orderBonus(Long orderId);
}