📄 dataprepareprocessbean.java
字号:
package cn.myapps.core.report.dataprepare.ejb;
import java.util.Collection;
import cn.myapps.base.dao.DAOFactory;
import cn.myapps.base.dao.IBaseDAO;
import cn.myapps.base.ejb.BaseProcessBean;
import cn.myapps.core.report.dataprepare.dao.DataPrepareDAO;
public class DataPrepareProcessBean extends BaseProcessBean implements DataPrepareProcess{
protected IBaseDAO getDAO() throws Exception {
return DAOFactory.getDefaultDAO(DataPrepare.class.getName());
}
public Collection getAllDataPrepareByApplication(String applicationid)throws Exception{
return ((DataPrepareDAO) getDAO()).getAllDataPrepareByApplication(applicationid);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -