forked from pxqbzjk5c/ECMS
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.
20 lines
407 B
20 lines
407 B
package com.prj.service;
|
|
|
|
import java.util.List;
|
|
import com.prj.domain.Employee;
|
|
|
|
public interface IEmployeeService
|
|
{
|
|
public Employee selectEmployeeById(Long id);
|
|
|
|
public List<Employee> selectEmployeeList(Employee employee);
|
|
|
|
public int insertEmployee(Employee employee);
|
|
|
|
public int updateEmployee(Employee employee);
|
|
|
|
public int deleteEmployeeByIds(Long[] ids);
|
|
}
|
|
|
|
|