yujian
2020-03-31 684779576c02c13cb2a18a7d93e88da7e57fd4b8
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);
 
}