bulletiondao.java
来自「有简单的网上书店需求及设计流程」· Java 代码 · 共 37 行
JAVA
37 行
package org.wiely.dao;
import org.wiely.vo.Bulletion;
/**
* the interface BulletionDAO provides method of showMess()
*/
public interface BulletionDAO {
/**
*
* @return String
* @throws Exception
*/
public String showMess()throws Exception;
/**
*
* @return boolean
* @throws Exception
*/
public boolean isMaxScore(int adminid)throws Exception;
/**
*
* @param bulletion
* @throws Exception
*/
public void updateBulletion(Bulletion bulletion)throws Exception;
/**
*
* @param adminid
* @return int
* @throws Exception
*/
public int queryIdByAdminid(int adminid) throws Exception;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?