/**
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
*
|
* https://www.renren.io
|
*
|
* 版权所有,侵权必究!
|
*/
|
|
package com.zt.modules.log.dao;
|
|
import com.zt.modules.log.model.SysLogLogin;
|
import com.zt.modules.sys.dto.RoleDto;
|
import org.apache.ibatis.annotations.Mapper;
|
|
import com.zt.common.dao.BaseDao;
|
import com.zt.modules.log.model.SysLogOperation;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 操作日志
|
*
|
* @author Mark sunlightcs@gmail.com
|
* @since 1.0.0
|
*/
|
@Mapper
|
public interface SysLogOperationDao extends BaseDao<SysLogOperation> {
|
List<SysLogOperation> getList(Map<String, Object> params);
|
|
void deleteCondition(List<SysLogOperation> deleteListById);
|
}
|