📄 templatedao.java
字号:
package com.coshare.joyteam.projectMgr.dao;
import java.util.List;
import com.coshare.joyteam.projectMgr.dto.TemplateDTO;
import com.coshare.joyteam.util.ID;
public interface TemplateDAO extends DAOInterface {
public boolean AddNew(TemplateDTO dtoObj) throws DAOException;
public boolean Update(TemplateDTO dtoObj) throws DAOException;
public boolean Delete(TemplateDTO dtoObj) throws DAOException;
public TemplateDTO getTemplate(ID templateId) throws DAOException;
public List getTemplates(String templateName) throws DAOException;
public TemplateDTO getTemplate(String templateName, int version) throws DAOException;
public List getTemplates() throws DAOException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -