| | |
| | | package com.yeshi.fanli.dao.mybatis.money; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.money.UserBalance; |
| | | |
| | | public interface UserBalanceMapper extends BaseMapper<UserBalance> { |
| | | |
| | | /** |
| | | * 根据用户id查询 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | UserBalance getByUid(Long uid); |
| | | package com.yeshi.fanli.dao.mybatis.money;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.money.UserBalance;
|
| | |
|
| | | public interface UserBalanceMapper extends BaseMapper<UserBalance> {
|
| | | |
| | | /**
|
| | | * 根据用户id查询
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | UserBalance getByUid(Long uid);
|
| | | } |