package com.zhujizheng.IHome.user.service; import com.zhujizheng.IHome.user.dto.PYUserUpdateDTO; import com.zhujizheng.IHome.user.vo.PYUserVO; import java.util.List; /** * Created with IntelliJ IDEA *

* Author: yons * Date: 2019/03/07 * Time: 00:42 * Description: * Copyright © 2019年 com.zhujizheng. All rights reserved. */ public interface PYUserService { /** * @Description: 更新个人信息 * @Param: com.zhujizheng.IHome.user.dto.PYUserUpdateDTO * @return: 非0为成功,0为失败 * @Author: 朱吉峥 * @Date: 2019/04/08 */ int updateInfo(PYUserUpdateDTO updateDTO); /** * @Description: 获取个人信息 * @Param: 【用户id】 * @return: com.zhujizheng.IHome.user.vo.PYUserVO * @Author: 朱吉峥 * @Date: 2019/04/21 */ PYUserVO selectInfo(int userId); /** * @Description: 获取个人信息,带备注信息 * @Param: 【用户id,好友id】 * @return: com.zhujizheng.IHome.user.vo.PYUserVO * @Author: 朱吉峥 * @Date: 2019/04/21 */ PYUserVO selectInfoWithFriendId(int userId, int friendId); /** * @Description: 获取卡乐尔销售信息 * @Param: 无 * @return: com.zhujizheng.IHome.user.vo.PYUserVO * @Author: 朱吉峥 * @Date: 2022/03/09 */ List selectKaleerSaler(); }