📄 accountdao.java
字号:
/**
* User: Clinton Begin
* Date: Jul 13, 2003
* Time: 8:17:52 PM
*/
package com.ibatis.jpetstore.persistence.iface;
import com.ibatis.jpetstore.domain.Account;
import java.util.List;
public interface AccountDao {
public Account getAccount(String username);
public List getUsernameList();
public Account getAccount(String username, String password);
public void insertAccount(Account account);
public void updateAccount(Account account);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -