tplresourceorgdao.java
来自「这是一个工作流管理的后端EJB实现」· Java 代码 · 共 19 行
JAVA
19 行
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 + =
减小字号Ctrl + -
显示快捷键?