kimi42345
2020-03-11 2c43f24c1a778b48ac20b07e17f5da38136cafb4
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.highdatas.mdm.mapper;
 
import com.highdatas.mdm.entity.SysOperateLog;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 *  Mapper 接口
 * </p>
 *
 * @author kimi
 * @since 2019-12-20
 */
public interface SysOperateLogMapper extends BaseMapper<SysOperateLog> {
 
    long getCount(@Param("where") String whereSegment);
 
    List<Map<String,Object>> getInfo(@Param("where") String whereSegment,@Param("limit") String limitSQL);
}