| | |
| | |
|
| | | import com.yeshi.fanli.entity.bus.user.invite.TeamDailyRecord;
|
| | | import com.yeshi.fanli.exception.user.TeamDailyRecordException;
|
| | | import com.yeshi.fanli.vo.order.OrderRankingVO;
|
| | |
|
| | | public interface TeamDailyRecordService {
|
| | |
|
| | |
| | |
|
| | |
|
| | | public List<TeamDailyRecord> getByUid(Long uid);
|
| | |
|
| | |
|
| | | |
| | | /**
|
| | | * 统计团队数量
|
| | | * @param uid
|
| | | * @param minDay
|
| | | * @param maxDay
|
| | | * @return
|
| | | */
|
| | | public List<TeamDailyRecord> sumTeamNumGroupByCountDay(Long uid, Date minDay, Date maxDay);
|
| | |
|
| | |
|
| | | public List<TeamDailyRecord> sumTeamNumGroupByYearMonth(Long uid, Date minDay, Date maxDay);
|
| | |
|
| | |
|
| | | public List<TeamDailyRecord> sumTeamNumGroupByUid(Long uid, Date minDay, Date maxDay);
|
| | |
|
| | | /**
|
| | | * 邀请排行榜
|
| | | * @param uid
|
| | | * @param minDay
|
| | | * @param maxDay
|
| | | * @return
|
| | | */
|
| | | public List<OrderRankingVO> getRankingByFirstNum(Long uid, Date minDay, Date maxDay);
|
| | | }
|