UserRPC.java
1.29 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
package com.diligrp.mobsite.getway.rpc;
import com.b2c.myapp.common.api.buyerInfo.input.BuyerInfoUpdateInput;
import com.b2c.myapp.common.api.buyerInfo.output.BuyerInfoOutput;
import com.b2c.myapp.common.api.shopBuyer.output.ShopBuyerOutput;
/**
* <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 UserRPC {
/**
* 验证电话号码是否存在
*
* 没有被使用:true
* 已经被使用:false
*
* @param mobile
* @return
* @createTime 2014年8月27日 下午2:31:07
* @author zhangshirui
*/
BuyerInfoOutput checkMobile(String mobile);
/**
* 修改密码
* @param accountName
* @param newPassword
* @return
* @createTime 2014年8月28日 下午3:01:49
* @author zhangshirui
*/
boolean modifyPwd(String accountName, String newPassword);
Boolean updateUserInfo(BuyerInfoUpdateInput input);
BuyerInfoOutput getUserByMobile(String accountName);
ShopBuyerOutput getDepositCardAmount(Long shopBuyerId,Long buyerId);
}