ilogdao.java

来自「实现统一的人员日志管理系统管理后台」· Java 代码 · 共 43 行

JAVA
43
字号
package com.tb.log.model.dao.idao;

import java.util.*;

import com.tb.log.model.dao.BaseDAO;
import com.tb.log.system.SystemException;
import com.tb.log.util.pages.PageBean;

public interface ILogDAO extends BaseDAO{
	
	
	
	/**通过用户id查询(关联)
	 * @param user_id
	 * @return
	 * @throws SystemException
	 */
	public List findbyUserid(String user_id)throws SystemException;
	
	/**条件查询翻页页数放入页bean中
	 * @param sql
	 * @return
	 * @throws SystemException
	 */
	public PageBean getCurrentPageByCondition(String sql) throws SystemException;
	
	
	/**(翻页)审核日志查询
	 * @param consql
	 * @param currentPage
	 * @return
	 * @throws SystemException
	 */
	public List findCheckByCondition(String consql, int currentPage)throws SystemException;
	
	/** 通过项目id删除日志
	 * @param pro_id
	 * @throws SystemException
	 */
	public void removeByProid(int pro_id) throws SystemException;
	
}

⌨️ 快捷键说明

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