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