📄 polldao.java
字号:
package com.ntsky.bbs.dao;
import java.util.List;
import com.ntsky.bbs.domain.Poll;
import com.ntsky.bbs.exception.DAOException;
/**
* 投票模块数据处理接口
*
* @author ntsky
* @link www.ntsky.com
*
* @version $Revision: 1.1 $ $Date: 2006/06/15 08:07:46 $
*/
public interface PollDAO extends BaseDAO{
/**
* 根据主题编号查找投票信息
* @param topicId 主题编号
* @return Poll 投票信息
*/
public Poll findPoll(int topicId) throws DAOException ;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -