fuliqi
2024-05-31 21a9aa320b3eeb072bcd7d3fa883587d57b6ccbb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ycl.jxkg.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.jxkg.domain.UserEventLog;
import com.ycl.jxkg.vo.admin.user.UserEventPageRequestVO;
import com.github.pagehelper.PageInfo;
 
import java.util.List;
 
public interface UserEventLogService extends IService<UserEventLog> {
 
    List<UserEventLog> getUserEventLogByUserId(Integer id);
 
    PageInfo<UserEventLog> page(UserEventPageRequestVO requestVM);
 
    List<Integer> selectMothCount();
}