📄 iemployeedao.java
字号:
package com.buat.employee;
import java.util.ArrayList;
public interface IEmployeeDAO {
public boolean addEmployee(Employee person); //添加人员
public boolean updateEmployee(Employee person); //修改人员
public boolean deleteEmployee(int interviewerId); //删除人员
public ArrayList queryEmployeeById(int interviewerId); //查询人员
public int getCountEmployee(); //获得人员总数
public ArrayList queryEmployee(int beginIndex,int endIndex); //浏览人员
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -