📄 instoredocumentmanagerfactoryimpl.java
字号:
/**
*
*/
package cn.bway.foreigntrade.repertory.instore.document.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.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;
import cn.bway.foreigntrade.repertory.incasement.document.model.Incasementdocument;
import cn.bway.foreigntrade.repertory.incasement.product.model.Incasementproduct;
import cn.bway.foreigntrade.repertory.instore.document.model.Instoredocument;
/**
* @author Kson
*
*/
public class InstoredocumentManagerFactoryImpl extends BaseManager implements
InstoredocumentManager {
public Object findAllInstoredocument(QueryVO qvo) throws BwayHibernateException {
// TODO Auto-generated method stub
return null;
}
public Object findAllInstoredocument6(QueryVO qvo) throws BwayHibernateException {
// TODO Auto-generated method stub
return instoredocumentdaofactory.getInstoredocumentDAO().findAllInstoredocument6(qvo);
}
public Object findAllInstoredocument1(QueryVO qvo,String id) throws BwayHibernateException {
// TODO Auto-generated method stub
return instoredocumentdaofactory.getInstoredocumentDAO().findAllInstoredocument1(qvo,id);
}
public void deleteInstoredocument(String id) throws BwayHibernateException {
// TODO Auto-generated method stub
instoredocumentdaofactory.getInstoredocumentDAO().removeObject(Instoredocument.class, id);
}
public Object getInstoredocument(String id) throws BwayHibernateException {
// TODO Auto-generated method stub
return instoredocumentdaofactory.getInstoredocumentDAO().getObject(Instoredocument.class, id);
}
public void addInstoredocument(Instoredocument instoredocument) throws BwayHibernateException {
// TODO Auto-generated method stub
instoredocumentdaofactory.getInstoredocumentDAO().saveObject(instoredocument);
}
public void modfilyInstoredocument(Instoredocument instoredocument) throws BwayHibernateException {
instoredocumentdaofactory.getInstoredocumentDAO().updateObject(instoredocument);
}
public Object queryAllInstoredocument(QueryVO qvo,String id) throws BwayHibernateException {
// TODO Auto-generated method stub
return instoredocumentdaofactory.getInstoredocumentDAO().queryAllInstoredocument(qvo,id);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -