| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.bus.user.vip.UserVIPInfo;
|
| | | import com.yeshi.fanli.entity.bus.user.vip.UserVIPPreInfo;
|
| | |
|
| | | public interface UserVIPPreInfoMapper extends BaseMapper<UserVIPPreInfo> {
|
| | |
| | | * @param procress
|
| | | * @return
|
| | | */
|
| | | UserVIPPreInfo selectByUidAndProcess(Long uid, int procress);
|
| | | UserVIPPreInfo selectByUidAndProcess(@Param("uid") Long uid, @Param("process") int process);
|
| | |
|
| | | /**
|
| | | * 根据用户ID检索
|
| | |
| | | * @param uid
|
| | | * @return
|
| | | */
|
| | | List<UserVIPPreInfo> listByUid(Long uid);
|
| | | List<UserVIPPreInfo> listByUid(@Param("uid") Long uid);
|
| | |
|
| | | } |