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
| package com.yeshi.fanli.service.inter.user;
|
| import java.math.BigDecimal;
|
| import com.yeshi.fanli.entity.bus.user.UserMoneyExtra;
|
| public interface UserMoneyExtraService {
|
| /**
| * 查询用户额外金额
| * @param uid
| * @return
| */
| public UserMoneyExtra selectByPrimaryKey(Long uid);
|
| /**
| * 更新信息
| * @param record
| */
| public void updateByPrimaryKeySelective(UserMoneyExtra record);
|
| /**
| * 用户获得推广金
| * @param uid
| * @param money
| * @param canSelf
| */
| public void addTaoLiJin(Long uid, BigDecimal money, boolean canSelf);
| }
|
|