SellerRPC.java 2.25 KB
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);
}