📄 productdao.java
字号:
/**
* User: Clinton Begin
* Date: Jul 13, 2003
* Time: 8:19:08 PM
*/
package com.jdon.framework.samples.jpetstore.persistence.dao.iface;
import java.sql.SQLException;
import java.util.List;
import com.jdon.framework.samples.jpetstore.domain.Product;
public interface ProductDao {
List getProductIDsListByCategory(String categoryId, int start, int pagessize) throws SQLException;
int getProductIDsListByCategoryCount(String categoryId) throws SQLException;
Product getProduct(String productId) throws SQLException;
List searchProductIDsList(String keywords, int start, int pagessize) throws SQLException;
int searchProductIDsListCount(String keywords) throws SQLException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -