liujie
2025-05-06 6478880833f9426f715ab68aff9cb44dcbec220b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.panzhihua.sangeshenbian.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.panzhihua.sangeshenbian.model.entity.SystemLog;
import org.apache.ibatis.annotations.Param;
 
/**
 * <p>
 * 日志表 Mapper 接口
 * </p>
 *
 * @author 
 * @since 2025-04-28
 */
public interface SystemLogMapper extends BaseMapper<SystemLog> {
 
 
    IPage<SystemLog> getLogList(@Param("page") Page page, @Param("sTime") String sTime, @Param("eTime") String eTime, @Param("operatorName") String operatorName, @Param("operatorPhone") String operatorPhone, @Param("operatorCategory") String operatorCategory, @Param("ip") String ip);
 
 
}