| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dto.vip.UserLevelStatisticDTO;
|
| | |
|
| | | public interface UserLevelStatisticMapper {
|
| | |
| | | * List<UserLevelStatisticDTO> 返回类型
|
| | | * @throws
|
| | | */
|
| | | List<UserLevelStatisticDTO> statisticFirstTeamLevelCount(Long uid);
|
| | | List<UserLevelStatisticDTO> statisticFirstTeamLevelCount(@Param("uid") Long uid);
|
| | |
|
| | |
|
| | | /**
|
| | |
| | | * List<UserLevelStatisticDTO> 返回类型
|
| | | * @throws
|
| | | */
|
| | | List<UserLevelStatisticDTO> statisticSecondTeamLevelCount(Long uid);
|
| | | List<UserLevelStatisticDTO> statisticSecondTeamLevelCount(@Param("uid") Long uid);
|
| | |
|
| | | } |