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
| package com.yeshi.fanli.service.inter.user.vip;
|
| import com.yeshi.fanli.entity.bus.user.vip.TeamUserLevelStatistic;
|
| /**
| * 团队用户
| * @author Administrator
| *
| */
| public interface TeamUserLevelStatisticService {
|
| /**
| * 根据用户检索
| * @Title: selectByUid
| * @Description:
| * @param uid
| * @return
| * TeamUserLevelStatistic 返回类型
| * @throws
| */
| public TeamUserLevelStatistic selectByUid(Long uid);
|
| /**
| * 初始化数据
| * @Title: initData
| * @Description:
| * @param uid
| * void 返回类型
| * @throws
| */
| public void initData(Long uid);
|
| /**
| * 添加
| * @Title: add
| * @Description:
| * @param statistic
| * void 返回类型
| * @throws
| */
| public void add(TeamUserLevelStatistic statistic);
| }
|
|