1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.yeshi.fanli.dao.mybatis.user.vip;
|
| import org.apache.ibatis.annotations.Param;
|
| import com.yeshi.fanli.dto.vip.UserVIPLevel;
|
| public interface UserVIPLevelMapper{
|
|
| /**
| * 根据用户ID检索
| *
| * @param uid
| * @return
| */
| UserVIPLevel getLevelByUid(@Param("uid") Long uid);
|
| }
|
|