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
347 B
20 lines
347 B
package com.prj.service;
|
|
|
|
import java.util.List;
|
|
import com.prj.domain.Dept;
|
|
|
|
public interface IDeptService
|
|
{
|
|
public Dept selectDeptById(Long id);
|
|
|
|
public List<Dept> selectDeptList(Dept dept);
|
|
|
|
public int insertDept(Dept dept);
|
|
|
|
public int updateDept(Dept dept);
|
|
|
|
public int deleteDeptByIds(Long[] ids);
|
|
}
|
|
|
|
|