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

📄 buyproductmanager.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
/**
 * 
 */
package cn.bway.foreigntrade.repertory.buyproduct.impl;

import cn.bway.common.BwayHibernateException;
import cn.bway.common.vo.QueryVO;


import cn.bway.foreigntrade.repertory.buyproduct.model.Buyproduct;

/**
 * @author Kson
 *
 */
public interface BuyproductManager {
	
	//根据查询条件,查询分�?

	public Object findAllBuyproduct(QueryVO qvo) throws BwayHibernateException;
	public Object getAllBuyproduct(String id) throws BwayHibernateException;
	//根据查询条件,查询分�?1
	public Object findAllBuyproduct1(QueryVO qvo) throws BwayHibernateException;
	
	public Object queryAllBuyproduct(QueryVO qvo) throws BwayHibernateException;
	public Object queryAllBuyproduct(QueryVO qvo,String id) throws BwayHibernateException;
	
	// 调用DAO数据层方法,增�?

	public void addBuyproduct(Buyproduct Buyproduct) throws BwayHibernateException;
	
	//调用DAO数据层方法,修�?

	public void modfilyBuyproduct(Buyproduct Buyproduct) throws BwayHibernateException;
	
	//调用DAO数据层方法,删�?

	public void deleteBuyproduct(String id) throws BwayHibernateException;
	
	//调用DAO数据层方法,查询一�?

	public Object getBuyproduct(String id) throws BwayHibernateException;	

}

⌨️ 快捷键说明

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