⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 actlogservice.java

📁 新技术论坛系统 v1.0 前后台管理的初始用户名 : admin 密码 123456
💻 JAVA
字号:
package com.ntsky.bbs.service;

import java.util.List;

import com.ntsky.bbs.domain.ActLog;
import com.ntsky.bbs.util.page.Pagination;
import com.ntsky.bbs.util.page.QueryResult;
import com.ntsky.bbs.exception.ServiceException;

public interface ActLogService extends BaseService{

	/**
	 * 创建操作日志
	 * @param actLog 操作日志对象
	 */
	public void createActLog(ActLog actLog) throws ServiceException ;
		
	/**
	 * 删除操作日志
	 * @param actLogId 操作日志编号
	 */
	public void deleteActLog(long actLogId) throws ServiceException ;
	
	/**
	 * 删除多个操作日志
	 * @param actLogId 操作日志编号
	 */
	public void deleteActLogs(String[] actLogIds) throws ServiceException ;

	/**
	 * 删除全部操作日志
	 * @param actLogId 操作日志编号
	 */
	public void deleteAllActLog() throws ServiceException ;	
	
	/**
	 * 取得某条操作日志详细信息
	 * @param actLogId 操作日志编号
	 * @return ActLog 操作日志对象
	 */
	public ActLog getActLog(long actLogId) throws ServiceException ;
	
	/**
	 * 分页列表操作操作日志信息
	 * @param actName 操作名称
	 * @param pagination 分页对象
	 * @return QueryResult 操作日志列表
	 */
	public QueryResult getActLogs(String actName, Pagination pagination) throws ServiceException ;
	
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -