| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.dnc.response.CommonJsonTree; |
| | | import org.jeecg.modules.dnc.response.DepartmentTreeModel; |
| | | import org.jeecg.modules.dnc.response.QueryPageResponseResult; |
| | | import org.jeecg.modules.dnc.ucenter.Department; |
| | | import org.jeecg.modules.system.entity.SysUser; |
| | | import org.jeecg.modules.dnc.request.DepartmentRequest; |
| | | import org.jeecg.modules.system.model.SysDepartTreeModel; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @return |
| | | */ |
| | | boolean assignRemoveApproveUser(String departId, Integer relativeFlag, String[] userIds); |
| | | |
| | | /** |
| | | * 查询所有部门信息,并分节点进行显示 |
| | | * @return |
| | | */ |
| | | List<DepartmentTreeModel> queryTreeList(); |
| | | |
| | | |
| | | /** |
| | | * 查询所有部门信息,并分节点进行显示 |
| | | * @param ids 多个部门id |
| | | * @return |
| | | */ |
| | | List<DepartmentTreeModel> queryTreeList(String ids); |
| | | |
| | | |
| | | /** |
| | | * 根据关键字搜索相关的部门数据 |
| | | * @param keyWord |
| | | * @param myDeptSearch |
| | | * @param departIds 多个部门id |
| | | * @return |
| | | */ |
| | | List<DepartmentTreeModel> searchByKeyWord(String keyWord,String myDeptSearch,String departIds); |
| | | } |