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

📄 ilogdao.java

📁 实现统一的人员日志管理系统管理后台
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -