admin
2020-04-23 2ff38cf4200a2235567e8ff6f5560a7026e1f1a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.yeshi.fanli.dao.mybatis.user.vip;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.bus.user.vip.TeamUserLevelStatistic;
 
public interface TeamUserLevelStatisticMapper extends BaseMapper<TeamUserLevelStatistic> {
 
    /**
     * 根据用户列表查询
     * @Title: listByUids
     * @Description: 
     * @param uidList
     * @return 
     * List<TeamUserLevelStatistic> 返回类型
     * @throws
     */
    List<TeamUserLevelStatistic> listByUids(@Param("uidList") List<Long> uidList);
}