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); 
 |  } 
 |  
  |