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

📄 iforumdao.java

📁 天乙社区6.0是一套基于JAVA技术的网络虚拟社区
💻 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -