📄 departmentdao.java
字号:
/*
* DepartmentDao.java
*
* Created on 2006年5月19日, 上午7:07
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package enova.dao;
import java.util.List;
import enova.pojo.*;
/**
*
* @author vlinux
*/
public interface DepartmentDao {
public Department get(Integer id) throws DataAccessException;
public void updateOrInsert(Department department) throws RecordExistException, DataAccessException;
public void delete(Integer id) throws DataAccessException;
public List getAll() throws DataAccessException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -