paymentincasemanager.java

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

JAVA
47
字号
/**
 * 
 */
package cn.bway.foreigntrade.finance.payment.incase.impl;

import cn.bway.common.BwayHibernateException;
import cn.bway.common.vo.QueryVO;
import cn.bway.myoffice.merchant.model.Merchant;
import cn.bway.foreigntrade.finance.payment.incase.model.Paymentincase;
import cn.bway.foreigntrade.operation.colormanagement.model.Colormanagement;
import cn.bway.foreigntrade.operation.countryport.model.Countryport;
import cn.bway.foreigntrade.operation.units.model.Units;

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

	public Object findAllPaymentincase(QueryVO qvo) throws BwayHibernateException;
	
	//根据查询条件,查询分�?1
	public Object findAllPaymentincase1(QueryVO qvo) throws BwayHibernateException;
	
	public Object queryPaymentincase(QueryVO qvo) throws BwayHibernateException;
	
	
	// 调用DAO数据层方法,增�?

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

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

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

	public Object getPaymentincase(String id) throws BwayHibernateException;	

}

⌨️ 快捷键说明

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