📄 ilogdao.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 + -