This commit is contained in:
dute7liang
2024-01-20 18:11:05 +08:00
parent a1fbc045a1
commit 414c176cef
6 changed files with 122 additions and 26 deletions

View File

@@ -23,15 +23,15 @@ public class CaiUnitTest {
@Test
public void rank(){
List<RankNode> nodes = rankManager.getLoveRankDayToday(9);
List<RankNode> nodes = rankManager.getLoveRankToday(9);
for (RankNode node : nodes) {
log.info("userId={}, score={}", node.getUserId(),node.getScore());
}
nodes = rankManager.getLoveRankDayLastDay(9);
nodes = rankManager.getLoveRankLastDay(9);
for (RankNode node : nodes) {
log.info("userId={}, score={}", node.getUserId(),node.getScore());
}
nodes = rankManager.getInviteRankDayToday(9);
nodes = rankManager.getInviteRankToday(9);
for (RankNode node : nodes) {
log.info("userId={}, score={}", node.getUserId(),node.getScore());
}