yujian
2020-06-09 7220cf2e1bef64b4a26904dfa07b7488d82c181f
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);
 
}