⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tplresourceorgdao.java

📁 这是一个工作流管理的后端EJB实现
💻 JAVA
字号:
package com.coshare.joyteam.projectMgr.dao;

import com.coshare.joyteam.projectMgr.dto.TplResourceOrgDTO;
import com.coshare.joyteam.util.ID;

import java.util.List;

public interface TplResourceOrgDAO extends DAOInterface {
	public boolean AddNew(TplResourceOrgDTO dtoObj) throws DAOException;
	public boolean Update(TplResourceOrgDTO dtoObj) throws DAOException;
	public boolean Delete(TplResourceOrgDTO dtoObj) throws DAOException;

	public TplResourceOrgDTO getTplResourceOrg(ID tplResOrgId) throws DAOException;
	public TplResourceOrgDTO getTplResourceOrg(ID templateId, ID activityId, String resId, int type) throws DAOException;
	public List getActResourceOrgs(ID activityId) throws DAOException;
	public List getTplResourceOrgs(ID templateId) throws DAOException;
	public List getTplResourceOrgs() throws DAOException;
}

⌨️ 快捷键说明

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