init
This commit is contained in:
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user