forked from pxqbzjk5c/ECMS
parent
aef4206fbb
commit
6698c175bf
@ -0,0 +1,19 @@
|
|||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue