xuefei
2023-08-08 6c764f473b1e0e9dd2fb13034fe0d7295ab3724e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cn.exrick.xboot.your.service;
 
import cn.exrick.xboot.your.vo.Month;
import com.baomidou.mybatisplus.extension.service.IService;
import cn.exrick.xboot.your.entity.EventLog;
 
import java.util.List;
 
/**
 * 事件日志表接口
 * @author whj
 */
public interface IEventLogService extends IService<EventLog> {
 
    Month getEventNum(int year,int type);
}