📄 iaccountdao.java
字号:
package com.sd0709.bank.persistent;
import org.hibernate.Session;
import com.sd0709.bank.biz.entity.Account;
public interface IAccountDAO {
public void insert(Account act)throws DataException;
public void delete(String actNo)throws DataException;
public void update(Account act)throws DataException;
public Account findByActNo(String actNo)throws DataException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -