📄 ibulletindao.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 IBulletinDAO {
/**
*
* @param bulletin Bulletin
* @return Bulletin
*/
public Bulletin saveBulletin(Bulletin bulletin);
/**
*
* @param id long
* @return Bulletin
*/
public Bulletin getBulletin(long id);
/**
*
* @return int
*/
public int getBulletinNum();
/**
*
* @param pages Pages
* @return PageList
*/
public List getBulletinList(int firstResult, int maxResults);
/**
*
* @param id long
*/
public void removeBulletin(long id);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -