UserRPCService.java
2.13 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.diligrp.website.rpc;
import java.util.List;
import com.diligrp.website.rpc.util.exception.GwException;
import com.yqyw.user.rpc.client.domain.output.MemberCreditInfoResp;
import com.yqyw.user.rpc.client.domain.output.ShoppingCartResp;
import com.yqyw.user.rpc.client.domain.output.UserInfoResp;
public interface UserRPCService {
/**
* this method is 批量增加浏览历史
* @param browseHistoryReq
* @return
* @throws GwException
* @createTime 2014年6月20日 上午10:47:28
* @author ipangy
*/
// public boolean addUserBrowseBatch(List<BrowseHistoryReq> browseHistoryReq)
// throws GwException;
/**
*
* this method is 移除用户的cookie
* @param userId
* @return
* @createTime 2014年6月20日 下午5:41:47
* @author ipangy
*/
// public boolean removeAllCookie(Long userId);
/**
*
* this method is 根据用户ID获取用户信息
* @param userId
* @return
* @throws GwException
* @createTime 2014年6月20日 下午5:58:03
* @author mengxf
*/
public UserInfoResp getUserInfoById(long userId) throws GwException;
/**
*
* this method is 获取用户信用额度
* @param userId
* @return
* @throws GwException
* @createTime 2014年6月24日 上午11:43:32
* @author mengxf
*/
public MemberCreditInfoResp getUserCredit(long userId) throws GwException;
/**
*
* this method is 获取用户已删除的记录
* @param userId
* @param count
* @return
* @throws GwException
* @createTime 2014年7月1日 上午11:12:46
* @author jiangchengyong
*/
public List<ShoppingCartResp> getHistoryProduct(long userId, int count)
throws GwException;
/**
* 根据sku反查产品pid this method is TODO
* @param skus
* @return
* @createTime 2014年7月7日 下午5:45:28
* @author ipangy
*/
public List<Long> getPidBySku(List<String> skus);
public UserInfoResp getUserInfoByMobile(String mobile);
public boolean updateShopName(Long shopId, String shopName);
}