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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| package com.yeshi.fanli.service.manger.money;
|
| import java.util.Date;
|
| import org.springframework.stereotype.Component;
|
| /**
| * 团队收益管理
| * @author Administrator
| *
| */
| @Component
| public class TeamEincomeManager {
|
| /**
| * 添加团队奖金
| * @Title: addTeamReward
| * @Description:
| * @param hongBaoList
| * @param uid
| * void 返回类型
| * @throws
| */
| public void addTeamReward(Long uid, Date preSendTime,int sourceType) {
|
| }
|
| /**
| * 添加团队补贴
| * @Title: addTeamSubsidy
| * @Description:
| * @param uid
| * @param taskKey
| * void 返回类型
| * @throws
| */
| public void addTeamSubsidy(Long uid, String taskKey,int sourceType) {
|
| }
|
| /**
| * 添加团队分红
| * @Title: addTeamDividents
| * @Description:
| * @param uid
| * @param preSendTime
| * void 返回类型
| * @throws
| */
| public void addTeamDividents(Long uid, Date preSendTime) {
|
| }
|
| }
|
|