admin
2020-05-16 7cf44cbaa96948dae87bec1bc2fe2bf80c775caa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.yeshi.fanli.dao.mybatis.user.vip;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dto.vip.UserLevelStatisticDTO;
 
public interface UserLevelStatisticMapper {
 
    /**
     * 统计一级队员的情况
     * @Title: statisticFirstTeamLevelCount
     * @Description: 
     * @param uid
     * @return 
     * List<UserLevelStatisticDTO> 返回类型
     * @throws
     */
    List<UserLevelStatisticDTO> statisticFirstTeamLevelCount(@Param("uid") Long uid);
    
    
    /**
     * 统计二级队员的情况
     * @Title: statisticSecondTeamLevelCount
     * @Description: 
     * @param uid
     * @return 
     * List<UserLevelStatisticDTO> 返回类型
     * @throws
     */
    List<UserLevelStatisticDTO> statisticSecondTeamLevelCount(@Param("uid") Long uid);
 
}