📄 persondao.java
字号:
package com.sunny.test.dao;
import java.util.List;
import com.sunny.test.model.Person;
public interface PersonDao
{
public void save(Person person) throws Exception;
public void delete(int id) throws Exception;
public List findAll() throws Exception;
public Person getPerson(int id) throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -