| | |
| | | package com.yeshi.fanli.dao.mybatis.user; |
| | | |
| | | |
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.bus.user.UserInfoExtra; |
| | | import com.yeshi.fanli.vo.user.UserInfoExtraVO; |
| | |
| | | * @return |
| | | */ |
| | | UserInfoExtra getInfoExtraByUid(Long uid); |
| | | |
| | | /**
|
| | | * 用于数据更新 加锁
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | UserInfoExtra getByUidForUpdate(Long uid);
|
| | | |
| | | /** |
| | | * 获取用户附加信息等其他信息 |
| | |
| | | */ |
| | | UserInfoExtra gerUserRank(Long uid); |
| | | |
| | | |
| | | /**
|
| | | * 用于数据更新 加锁
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | void updateGoldCoin(@Param("id")Long id, @Param("goldCoin")Integer goldCoin);
|
| | | } |