cancelproductmanager.java

来自「这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天」· Java 代码 · 共 47 行

JAVA
47
字号
/**
 * 
 */
package cn.bway.foreigntrade.repertory.cancel.product.impl;

import cn.bway.common.BwayHibernateException;
import cn.bway.common.vo.QueryVO;
import cn.bway.myoffice.merchant.model.Merchant;
import cn.bway.foreigntrade.operation.units.model.Units;
import cn.bway.foreigntrade.order.exportclient.model.Exportclient;
import cn.bway.foreigntrade.order.exportproduct.model.Exportproduct;
import cn.bway.foreigntrade.repertory.cancel.document.model.Canceldocument;
import cn.bway.foreigntrade.repertory.cancel.product.model.Cancelproduct;

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

	public Object findAllCancelproduct(QueryVO qvo) throws BwayHibernateException;
	public Object getAllCancelproduct(String id) throws BwayHibernateException;
	//根据查询条件,查询分�?1
	public Object findAllCancelproduct1(QueryVO qvo,String id) throws BwayHibernateException;
	
	public Object queryAllCancelproduct(QueryVO qvo,String id) throws BwayHibernateException;
	
	// 调用DAO数据层方法,增�?

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

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

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

	public Object getCancelproduct(String id) throws BwayHibernateException;	

}

⌨️ 快捷键说明

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