📄 bbstitleinfomanagedaointerface.java
字号:
package com.px1987.webbbs.dao;
import java.util.ArrayList;
import com.px1987.webbbs.exception.WebBBSException;
public interface BBSTitleInfoManageDAOInterface
{
public boolean deleteOneBBSTitleInfo(int bbsTitleID) throws WebBBSException;
public boolean insertBBSTitleInfo(BBSTitleInfoPO oneBBSTitleInfo) throws WebBBSException;
public int getBBSTitleInfoTotalCounter() throws WebBBSException;
public ArrayList getAllBbsTitleInfos() throws WebBBSException;
public BBSTitleInfoPO selectBBSTitleByBBSTitleID(int bbsTitleID) throws WebBBSException;
public ArrayList selectSomeBBSInfoTitle(String HQLSelect) throws WebBBSException;
public int getBBSTitleInfoTotalCounter(String HQLQuery) throws WebBBSException;
public boolean updateBBTitleCounterByBbsTitleID(int bbsTitleID,String bbsAuthorID,String bbsAuthorName) throws WebBBSException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -