| | |
| | | package com.yeshi.fanli.service.inter.money;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.UserMoneyExtra;
|
| | |
|
| | | public interface UserMoneyExtraService {
|
| | |
|
| | | /**
|
| | | * 查询用户额外金额
|
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | public UserMoneyExtra selectByPrimaryKey(Long uid);
|
| | |
|
| | | /**
|
| | | * 更新信息
|
| | | * @param record
|
| | | */
|
| | | public void updateByPrimaryKeySelective(UserMoneyExtra record);
|
| | |
|
| | |
|
| | | /**
|
| | | * 获取有效金币用户
|
| | | * @param page
|
| | | * @param count
|
| | | * @return
|
| | | */
|
| | | public List<UserMoneyExtra> listValid(int page, int count);
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.money; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.bus.user.UserMoneyExtra; |
| | | |
| | | public interface UserMoneyExtraService { |
| | | |
| | | /** |
| | | * 查询用户额外金额 |
| | | * @param uid |
| | | * @return |
| | | */ |
| | | public UserMoneyExtra selectByPrimaryKey(Long uid); |
| | | |
| | | /** |
| | | * 更新信息 |
| | | * @param record |
| | | */ |
| | | public void updateByPrimaryKeySelective(UserMoneyExtra record); |
| | | |
| | | |
| | | /** |
| | | * 获取有效金币用户 |
| | | * @param page |
| | | * @param count |
| | | * @return |
| | | */ |
| | | public List<UserMoneyExtra> listValid(int page, int count); |
| | | |
| | | } |