?? iforumdao.java
字號:
package com.laoer.bbscs.dao;
import com.laoer.bbscs.bean.*;
import java.util.*;
/**
* <p>Title: TianYi BBS</p>
* <p>Description: TianYi BBS System</p>
* <p>Copyright: Copyright (c) 2004</p>
* <p>Company: LAOER.COM/TIANYISOFT.NET</p>
* @author laoer
* @version 6.0
*/
public interface IForumDAO {
public Forum saveForum(Forum forum);
public Forum getForum(long id, long bid);
public int getForumMainNum(long bid);
public int getForumAllNum(long bid, short delSign, short auditing);
public int getForumTopicNum(long bid, long ID2);
public int getForumDelAllNum(long bid);
public List getForumMainList(long bid, int firstResult, int maxResults);
public List getForumAllList(long bid, short delSign, short auditing,
int firstResult, int maxResults);
public List getForumTopicList(long bid, long ID2, int firstResult,
int maxResults);
public List getForumTopicList(long bid, long ID2, short delSign,
short auditing);
public List getForumDelTopicList(long bid, long ID2);
public List findForumInList(long bid, List values);
public List findForumDelAll(long bid);
public List findForumDelAllList(long bid, int firstResult, int maxResults);
public List findForumElite(long bid, long elite, long eliteId);
public void removeForum(long id, long bid);
public void removeForum(Forum forum);
public int getSearchNum(long bid, String con, String text);
public List getSearchList(long bid, String con, String text,
int firstResult, int maxResults);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -