龚焕茏
2024-06-03 309a91cbf61884c5e619a68df818c334d27a5c32
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(List<Integer> deptIds);
}