This commit is contained in:
dute7liang
2024-01-20 18:11:12 +08:00
parent 414c176cef
commit 5a9c8c9246
6 changed files with 375 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package com.ruoyi.cai.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.cai.domain.Rank;
import java.time.LocalDate;
/**
* 榜单Service接口
*
* @author 77
* @date 2024-01-20
*/
public interface RankService extends IService<Rank> {
void saveDayRank(LocalDate date,Integer type);
void saveWeekRank(LocalDate date,Integer type);
void saveMonthRank(LocalDate date,Integer type);
}