employeemanagerservice.java
来自「生产管理系统 使用SSH」· Java 代码 · 共 38 行
JAVA
38 行
package task.business;
import java.util.List;
import task.domain.Admin;
import task.domain.Employee;
/**
* @author liuu
* @date Apr 25, 2008
*/
public interface EmployeeManagerService
{
public boolean addEmployee(Employee employee) throws Exception;
public List<Employee> getAllClerk() throws Exception;
public List<Employee> getAllManager() throws Exception;
public List<Employee> getAllEmployee() throws Exception;
public boolean deleteEmployee(int employeeId) throws Exception;
public boolean dispatchEmployee(int employeeId,int managerId )throws Exception;
public boolean employeeIsInTask(int employeeId)throws Exception;
public Employee showInfoEmployee(int employeeId)throws Exception;
public boolean addAdmin(Admin admin)throws Exception;
public boolean checkIsAdimin(String adminId, String password)throws Exception;
public boolean checkIsEmployee(String id, String password,String position)throws Exception;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?