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
| package com.yeshi.fanli.service.inter.user;
|
| import com.yeshi.fanli.entity.bus.user.UserExtraTaoBaoInfo;
|
| /**
| * 用户淘宝联盟服务
| *
| * @author Administrator
| *
| */
| public interface UserExtraTaoBaoInfoService {
|
| /**
| * 添加渠道ID
| *
| * @param uid
| * @param relationId
| */
| public void addRelationId(Long uid, String relationId);
|
| /**
| * 添加会员ID
| *
| * @param uid
| * @param specialId
| */
| public void addSpecialId(Long uid, String specialId);
|
| /**
| * 通过UID获取淘宝联盟渠道信息
| *
| * @param uid
| * @return
| */
| public UserExtraTaoBaoInfo getByUid(Long uid);
|
| }
|
|