org.openea.eap.module.system.service.dept.DeptService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eap-module-system-biz Show documentation
Show all versions of eap-module-system-biz Show documentation
system 模块下,我们放通用业务,支撑上层的核心业务。
例如说:用户、部门、权限、数据字典等等
The newest version!
package org.openea.eap.module.system.service.dept;
import org.openea.eap.framework.common.util.collection.CollectionUtils;
import org.openea.eap.module.system.controller.admin.dept.vo.dept.DeptListReqVO;
import org.openea.eap.module.system.controller.admin.dept.vo.dept.DeptSaveReqVO;
import org.openea.eap.module.system.dal.dataobject.dept.DeptDO;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* 部门 Service 接口
*
*/
public interface DeptService {
/**
* 创建部门
*
* @param createReqVO 部门信息
* @return 部门编号
*/
Long createDept(DeptSaveReqVO createReqVO);
/**
* 更新部门
*
* @param updateReqVO 部门信息
*/
void updateDept(DeptSaveReqVO updateReqVO);
/**
* 删除部门
*
* @param id 部门编号
*/
void deleteDept(Long id);
/**
* 获得部门信息
*
* @param id 部门编号
* @return 部门信息
*/
DeptDO getDept(Long id);
/**
* 获得部门信息数组
*
* @param ids 部门编号数组
* @return 部门信息数组
*/
List getDeptList(Collection ids);
/**
* 筛选部门列表
*
* @param reqVO 筛选条件请求 VO
* @return 部门列表
*/
List getDeptList(DeptListReqVO reqVO);
/**
* 获得指定编号的部门 Map
*
* @param ids 部门编号数组
* @return 部门 Map
*/
default Map getDeptMap(Collection ids) {
List list = getDeptList(ids);
return CollectionUtils.convertMap(list, DeptDO::getId);
}
/**
* 获得指定部门的所有子部门
*
* @param id 部门编号
* @return 子部门列表
*/
List getChildDeptList(Long id);
/**
* 获得所有子部门,从缓存中
*
* @param id 父部门编号
* @return 子部门列表
*/
Set getChildDeptIdListFromCache(Long id);
/**
* 校验部门们是否有效。如下情况,视为无效:
* 1. 部门编号不存在
* 2. 部门被禁用
*
* @param ids 角色编号数组
*/
void validateDeptList(Collection ids);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy