iproductdao.java

来自「一个基于java工厂模式的 的实现」· Java 代码 · 共 25 行

JAVA
25
字号
/*
 * IProductDAO.java
 *
 * Created on 2007年4月19日, 上午9:45
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.ebuy.common.dao;

import java.util.List;

/**
 *
 * @author Administrator
 */
public interface IProductDAO
{
   List findByCategoryID(int categoryid,int pagesize,int pageindex);
   List findByProductNameKey(String key,int pagesize,int pageindex);
   int getRecordCountByCategoryID(int categoryid);
   int getRecordCountByProductNameKey(String key);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?