SellerRPC.java
2.25 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.diligrp.mobsite.getway.rpc;
import com.b2c.myapp.common.api.buyerInfo.output.BuyerInfoOutput;
import com.b2c.myapp.common.api.sellerInfo.output.SellerInfoOutput;
import com.diligrp.mobsite.getway.domain.protocol.PickInfo;
import com.diligrp.mobsite.getway.domain.protocol.cart.ModifyAmountReq;
import java.util.List;
/**
* <B>Description</B> userrpc <br />
* <B>Copyright</B> Copyright (c) 2014 www.diligrp.com All rights reserved. <br />
* 本软件源代码版权归地利集团,未经许可不得任意复制与传播.<br />
* <B>Company</B> 地利集团
*
* @author wujianjun
* @createTime Aug 19, 2014 2:33:16 PM
*/
public interface SellerRPC {
/**
* 验证电话号码是否存在
*
* 没有被使用:true
* 已经被使用:false
*
* @param mobile
* @return
* @createTime 2014年8月27日 下午2:31:07
* @author zhangshirui
*/
boolean checkMobile(String mobile);
/**
* 修改进货单数量
* @param req
* @return
* @createTime 2015年3月9日 下午2:49:27
* @author zhangshirui
*/
boolean modifyAmount(ModifyAmountReq req);
/**
* 修改密码
* @param accountName
* @param newPassword
* @return
* @createTime 2014年8月28日 下午3:01:49
* @author zhangshirui
*/
boolean modifyPwd(String accountName, String newPassword);
Long addConsignee(PickInfo pickInfo, Long userId);
boolean updateConsignee(PickInfo pickInfo, Long userId);
PickInfo getConsignee(Long id);
boolean delConsignee(Long id);
List<PickInfo> getConsigneeByUserId(Long userId);
PickInfo getDefaultConsignee(Long userId);
boolean setDefaultConsignee(Long id, Long userId);
/**
* 密码加密
* @param pwd
* @return
* @createTime 2014年9月19日 上午10:04:35
* @author zhangshirui
*/
String getEncryptPwd(String pwd);
/**
* 验证用户密码
* @param userId
* @param password
* @return
* @createTime 2015年6月24日 下午1:45:53
* @author zhangshirui
*/
boolean checkPassword(Long userId, String password);
BuyerInfoOutput getUserByMobile(String accountName);
SellerInfoOutput getSellerByMobile(String accountName);
}