You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
417 B
25 lines
417 B
package com.service;
|
|
|
|
import com.entity.Employee;
|
|
import com.utils.Page;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
|
|
public interface IEmpService {
|
|
|
|
List<Employee> listEmp(Page page);
|
|
|
|
int getEmpTotal();
|
|
List<Employee> searchEmp(Map<String, Object> map);
|
|
|
|
void addEmp(Employee employee);
|
|
Employee selectEmpById(int id);
|
|
void modifyEmp(Employee employee);
|
|
|
|
void deleteEmp(int id);
|
|
|
|
|
|
}
|