fix
Hentua
2023-04-21 959fa08ebd5b24cbb82503c4f01f3c90648ed863
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
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 directProfit(Long orderId);
 
    void dynamicProfit(Long orderId, Integer isNormal);
 
    /**
     * 代理分红
     */
    void agentProfit();
 
    void scorePool();
 
    void selaHalfVoucher(String price);
}