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

📄 bbstitleinfomanagedaointerface.java

📁 hibernate项目实践
💻 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 + -