⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productdao.java

📁 简单的Jdon实现
💻 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 + -