1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| package project.bonus;
|
| import project.blockchain.RechargeBlockchain;
| /**
| * 推广奖金
| * @author User
| *
| */
| public interface RechargeBonusService {
| /**
| * 充值时计算收益
| * @param entity
| * 币种usdt价值
| */
| public void saveBounsHandle(RechargeBlockchain entity,double transfer_usdt);
|
| /**
| * 每日定时返佣
| */
| public void saveDailyBounsHandle();
| }
|
|