📄 bbsinfomanageinterface.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -