📄 paymentincasemanagerfactoryimpl.java
字号:
/**
*
*/
package cn.bway.foreigntrade.finance.payment.incase.impl;
import cn.bway.common.BwayHibernateException;
import cn.bway.common.impl.BaseManager;
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 class PaymentincaseManagerFactoryImpl extends BaseManager implements
PaymentincaseManager {
public Object findAllPaymentincase(QueryVO qvo) throws BwayHibernateException {
return paymentincasedaofactory.getPaymentincaseDAO().findAllPaymentincase(qvo);
}
public Object findAllPaymentincase1(QueryVO qvo) throws BwayHibernateException {
return paymentincasedaofactory.getPaymentincaseDAO().findAllPaymentincase1(qvo);
}
public void deletePaymentincase(String id) throws BwayHibernateException {
paymentincasedaofactory.getPaymentincaseDAO().removeObject(Paymentincase.class, id);
}
public Object getPaymentincase(String id) throws BwayHibernateException {
return paymentincasedaofactory.getPaymentincaseDAO().getObject(Paymentincase.class, id);
}
public void addPaymentincase(Paymentincase Paymentincase) throws BwayHibernateException {
paymentincasedaofactory.getPaymentincaseDAO().saveObject(Paymentincase);
}
public void modfilyPaymentincase(Paymentincase Paymentincase) throws BwayHibernateException {
paymentincasedaofactory.getPaymentincaseDAO().updateObject(Paymentincase);
}
public Object queryPaymentincase(QueryVO qvo) throws BwayHibernateException {
// TODO Auto-generated method stub
return paymentincasedaofactory.getPaymentincaseDAO().queryPaymentincase(qvo);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -