bbsinfomanageinterface.java

来自「hibernate项目实践」· Java 代码 · 共 39 行

JAVA
39
字号
package com.px1987.webbbs.model;
import java.util.*;

import com.px1987.webbbs.exception.*;
public interface BBSInfoManageInterface
{
	 public boolean doSaveBBSInfo(BBSInfoVO oneBBSInfo) throws WebBBSException;
     public boolean doSaveBBSReplyInfo(BBSReplyInfoVO oneBBSReplyInfo) throws WebBBSException;
     public boolean doUpdateBBSInfo(BBSInfoVO oneBBSInfoVO) throws  WebBBSException;
     public boolean doUpdateBBSInfoHits(int bbsID) throws  WebBBSException;
 	 public boolean  BatchDeleteBBSInfo(ArrayList deletedBBSIDs) throws WebBBSException;
 	
     public ArrayList doSeacherBBSInfo(String searchKind,String keyText) throws WebBBSException;
     public ArrayList doGetTodayAllBBSInfo() throws WebBBSException;
     public ArrayList doGetTodayAllBBSInfo(int firstResult,int maxResults) throws WebBBSException;
     public int doGetTodayAllBBSInfoCount() throws WebBBSException;
     public int doGetTotalBBSInfoCounterByUserID(String userID) throws WebBBSException;
     
     
     public ArrayList doGetBBSTitleInfo() throws WebBBSException;
     public ArrayList doGetBBSTitleInfo(int bbsTitleID) throws WebBBSException;
     public ArrayList doGetBBSInfoByTitleID(int bbsTitleID) throws WebBBSException;
     public BBSInfoVO doGetOneBBSInfoByBBSID(int bbsInfoID) throws WebBBSException;

     public ArrayList doGetBBSInfoByHits() throws WebBBSException;
     public ArrayList doGetBBSInfoByHits(int bbsHitsCounter) throws WebBBSException;
     public ArrayList doGetBBSInfoByHits(int firstResult,int maxResults) throws WebBBSException;
   			
     public int doGetTotalHotBBSInfoCounter(int totalHits) throws WebBBSException;
     
     public int doGetPageTotalBBSInfoCounterByTitleID(int bbsTitleID) throws WebBBSException;
     public int doGetTotalBBSInfoCounter() throws WebBBSException;
     public int doGetTotalBBSTitleInfoCounter() throws WebBBSException;
     
     public ArrayList doGetPageBBSInfoByTitleID(int bbsTitleID,int firstResult, int maxResults) throws WebBBSException;
     public BBSTitleVO doGetBBSTitleInfoByTitleID(int bbsTitleID) throws WebBBSException;
     public ArrayList doGetPageBBSInfoByLoginUserID(String userID,int firstResult, int maxResults) throws WebBBSException;
}

⌨️ 快捷键说明

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