2022-05-20 15:00:03 +08:00
|
|
|
package com.engine.organization.service;
|
|
|
|
|
|
2022-05-23 17:46:37 +08:00
|
|
|
import com.engine.organization.entity.department.param.DeptSearchParam;
|
2022-05-20 15:00:03 +08:00
|
|
|
import com.engine.organization.entity.department.param.QuerySingleDeptListParam;
|
|
|
|
|
import com.engine.organization.entity.department.vo.SingleDeptTreeVO;
|
|
|
|
|
import com.engine.organization.util.page.PageInfo;
|
|
|
|
|
|
2022-05-23 17:46:37 +08:00
|
|
|
import java.util.Map;
|
|
|
|
|
|
2022-05-20 15:00:03 +08:00
|
|
|
/**
|
|
|
|
|
* @Author weaver_cl
|
|
|
|
|
* @Description: TODO
|
|
|
|
|
* @Date 2022/5/20
|
|
|
|
|
* @Version V1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface DepartmentService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 根据分部id获取部门tree
|
|
|
|
|
* 联查部门
|
2022-05-23 17:46:37 +08:00
|
|
|
*
|
2022-05-20 15:00:03 +08:00
|
|
|
* @param param
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
PageInfo<SingleDeptTreeVO> getDeptListByPid(QuerySingleDeptListParam param);
|
2022-05-23 17:46:37 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 列表数据展示
|
|
|
|
|
*
|
|
|
|
|
* @param param
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public Map<String, Object> listPage(DeptSearchParam param);
|
|
|
|
|
|
|
|
|
|
|
2022-05-20 15:00:03 +08:00
|
|
|
}
|