| | |
| | | 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); |
| | | } |