吉安感知网项目-后端
xiebin
2026-01-16 041fa12f2b00770ed4592ece9bcd36a7ad3f687c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.sxkj.core.log.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import org.sxkj.core.log.model.OperationLog;
import org.sxkj.core.log.param.OperationLogPageParam;
import org.sxkj.core.log.vo.OperationLogVO;
 
/**
 * 服务类
 *
 * @author Aix
 */
public interface IOperationLogService extends IService<OperationLog> {
 
    /**
     * 自定义分页查询
     * @param operationLogPageParam
     * @param page
     * @return
     */
    IPage<OperationLogVO> selectOperationLogPage(IPage<OperationLogVO> page, OperationLogPageParam operationLogPageParam);
 
}