qirong
2023-08-17 81dfe248054eaa3c2751ba32576f48598adcd04f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mindskip.xzs.service;
 
import com.mindskip.xzs.domain.UserEventLog;
import com.mindskip.xzs.viewmodel.admin.user.UserEventPageRequestVM;
import com.github.pagehelper.PageInfo;
 
import java.util.List;
 
public interface UserEventLogService extends BaseService<UserEventLog> {
 
    List<UserEventLog> getUserEventLogByUserId(Integer id);
 
    PageInfo<UserEventLog> page(UserEventPageRequestVM requestVM);
 
    List<Integer> selectMothCount();
}