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
55
56
57
58
59
| 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, String taoBaoUid, boolean valid);
|
| /**
| * 添加会员ID
| *
| * @param uid
| * @param specialId
| */
| public void addSpecialId(Long uid, String specialId, String taoBaoUid, boolean valid);
|
| /**
| * 通过UID获取淘宝联盟渠道信息
| *
| * @param uid
| * @return
| */
| public UserExtraTaoBaoInfo getByUid(Long uid);
|
| /**
| * 选择性更新
| *
| * @param ue
| */
| public void updateSelective(UserExtraTaoBaoInfo ue);
|
| /**
| * 解绑用户
| *
| * @param uid
| */
| public void unBindUid(Long uid);
|
| /**
| * 绑定淘宝后6位
| *
| * @param taoBaoUid
| * @param orderId
| */
| public void bindTaoBaoOrderEnd6Num(String taoBaoUid, String orderId);
|
| }
|
|