KKSU
2024-01-12 9f7c5e673846ac86c83d6a1f9d6d02c02f7ea9f7
1
2
3
4
5
6
7
8
9
10
package cc.mrbird.febs.mall.service;
 
public interface IAgentService {
 
    void autoUpAgentLevel(Long memberId);
 
    void returnMoneyToAgent(Long orderId);
 
    void rankReturnMoney(Long orderId);
}