yujian
2020-05-21 911bf01531a74555bc1c6c1ea1ff0fa7bf87d7a1
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);
 
}