package com.doumee.biz.system;
|
|
import com.doumee.dao.system.model.SystemDepartment;
|
import com.doumee.dao.system.vo.SystemDepartmentListVO;
|
|
import java.util.List;
|
|
/**
|
* 部门管理业务处理
|
* @author Eva.Caesar Liu
|
* @date 2022/03/15 09:54
|
*/
|
public interface SystemDepartmentBiz {
|
|
/**
|
* 新建
|
* @author Eva.Caesar Liu
|
* @date 2022/03/15 09:54
|
*/
|
Integer create(SystemDepartment department);
|
|
/**
|
* 编辑
|
* @author Eva.Caesar Liu
|
* @date 2022/03/15 09:54
|
*/
|
void updateById(SystemDepartment department);
|
|
/**
|
* 查询部门列表树
|
* @author Eva.Caesar Liu
|
* @date 2022/03/15 09:54
|
*/
|
List<SystemDepartmentListVO> findTree();
|
|
/**
|
* 删除
|
* @author Eva.Caesar Liu
|
* @date 2022/03/15 09:54
|
*/
|
void deleteById(Integer id);
|
|
/**
|
* 批量删除
|
* @author Eva.Caesar Liu
|
* @date 2022/03/15 09:54
|
*/
|
void deleteByIdInBatch(List<Integer> ids);
|
}
|