📄 systeminfoiado.java
字号:
package iado;
import java.sql.SQLException;
/**
* @author lixiaoqing
*
*/
public interface SystemInfoIAdo {
/**
* @return
*/
public String selectBulletin() throws SQLException;
/**
* @return
*/
public int selectRowsPerPage() throws SQLException;
/**
* @param bulletin
*/
public void updateBulletin(String bulletin) throws SQLException;
/**
* @param rowsPerPage
*/
public void updateRowsPerPage(int rowsPerPage) throws SQLException;
/**
* @throws SQLException
*/
public void close() throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -