📄 rootdao.java
字号:
/*
* RootDao.java
*
* Created on 2006年5月19日, 上午7:54
*
* 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 RootDao {
public Root get(Integer id) throws DataAccessException;
public void updateOrInsert(Root root) throws RecordExistException, DataAccessException;
public void delete(Integer id) throws DataAccessException;
public List getAll() throws DataAccessException;
public List getByUsername(String username) throws DataAccessException;
public Root loginVerify(String username,String password) throws DataAccessException;
public void changePassword(String username,String oldPassword,String newPassword) throws DataAccessException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -