init
This commit is contained in:
@@ -2,8 +2,10 @@ package com.ruoyi.cai.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.ruoyi.cai.domain.Rank;
|
||||
import com.ruoyi.cai.rank.RankNode;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 榜单Service接口
|
||||
@@ -18,4 +20,14 @@ public interface RankService extends IService<Rank> {
|
||||
void saveWeekRank(LocalDate date,Integer type);
|
||||
|
||||
void saveMonthRank(LocalDate date,Integer type);
|
||||
|
||||
void giveRank(Long rankId);
|
||||
|
||||
List<RankNode> getLoveRankLastWeek(int limit);
|
||||
|
||||
List<RankNode> getLoveRankLastDay(int limit);
|
||||
|
||||
List<RankNode> getInviteRankLastWeek(int limit);
|
||||
|
||||
List<RankNode> getInviteRankLastDay(int limit);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user