📄 productdao.java
字号:
/**
*
*/
package cn.bway.foreigntrade.reperstory.product.dao;
import cn.bway.common.BwayHibernateException;
import cn.bway.common.dao.DAO;
import cn.bway.common.vo.QueryVO;
/**
* @author Kson
*
*/
public interface ProductDAO extends DAO {
//根据查询条件,返回所有的信息
public Object findAllProduct() throws BwayHibernateException;
//根据查询条件,返回所有的信息
public Object findAllProduct1(QueryVO qvo,String types) throws BwayHibernateException;
public Object queryAllProduct(QueryVO qvo) throws BwayHibernateException;
public Object queryProduct(QueryVO qvo,String types,String codes) throws BwayHibernateException;
public Object queryProduct(String types,String codes) throws BwayHibernateException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -