bookdao.java
来自「达内网上购物系统」· Java 代码 · 共 18 行
JAVA
18 行
package org.whatisjava.dang.dao;
import java.util.List;
import org.whatisjava.dang.util.DaoException;
public interface BookDao {
public List<?> findById(Integer id) throws DaoException;
public List<?> findByCategoryId(Integer categoryId, int rowsPerPage,
int page) throws DaoException;
public List<?> findByCategoryId(Integer categoryId) throws DaoException;
public int getTotalPagesByCategoryId(Integer categorId, int rowsPerPage)
throws DaoException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?