123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- /*
- * Copyright 2019-2020 Zheng Jie
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package me.zhengjie.modules.system.service;
- import me.zhengjie.modules.dm.user.service.dto.DmUserQueryCriteria;
- import me.zhengjie.modules.system.domain.Dept;
- import me.zhengjie.modules.system.service.dto.DeptDto;
- import me.zhengjie.modules.system.service.dto.DeptQueryCriteria;
- import me.zhengjie.modules.system.service.dto.DeptQueryNoAuthCriteria;
- import org.springframework.data.domain.Pageable;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- import java.util.List;
- import java.util.Map;
- import java.util.Set;
- /**
- * @author Zheng Jie
- * @date 2019-03-25
- */
- public interface DeptService {
- /**
- * 查询所有数据
- * @param criteria 条件
- * @param isQuery /
- * @throws Exception /
- * @return /
- */
- List<DeptDto> queryAll2(DeptQueryCriteria criteria, String[] sort, Boolean isQuery) throws Exception;
- /**
- * 查询所有数据
- * @param criteria 条件
- * @param isQuery /
- * @throws Exception /
- * @return /
- */
- List<DeptDto> queryAll(DeptQueryCriteria criteria, Boolean isQuery) throws Exception;
- /**
- * 查询所有数据
- * @param criteria 条件
- * @return /
- */
- List<DeptDto> queryAll(DeptQueryNoAuthCriteria criteria) throws Exception;
- /**
- * 查询数据分页
- * @param criteria 条件
- * @param pageable 分页参数
- * @return Map<String,Object>
- */
- Map<String,Object> queryAll(DeptQueryNoAuthCriteria criteria, Pageable pageable);
- /**
- * 根据ID查询
- * @param id /
- * @return /
- */
- DeptDto findById(String id);
- /**
- * 创建
- * @param resources /
- */
- void create(Dept resources);
- /**
- * 创建
- * @param resources /
- */
- void syncCreate(Dept resources);
- /**
- * 编辑
- * @param resources /
- */
- void update(Dept resources);
- /**
- * 删除
- * @param deptDtos /
- *
- */
- void delete(Set<DeptDto> deptDtos);
- /**
- * 根据PID查询
- * @param pid /
- * @return /
- */
- List<Dept> findByPid(String pid);
- /**
- * 根据角色ID查询
- * @param id /
- * @return /
- */
- Set<Dept> findByRoleId(String id);
- /**
- * 导出数据
- * @param queryAll 待导出的数据
- * @param response /
- * @throws IOException /
- */
- void download(List<DeptDto> queryAll, HttpServletResponse response) throws IOException;
- /**
- * 获取待删除的部门
- * @param deptList /
- * @param deptDtos /
- * @return /
- */
- Set<DeptDto> getDeleteDepts(List<Dept> deptList, Set<DeptDto> deptDtos);
- /**
- * 根据ID获取同级与上级数据
- * @param deptDto /
- * @param depts /
- * @return /
- */
- List<DeptDto> getSuperior(DeptDto deptDto, List<Dept> depts);
- /**
- * 构建树形数据
- * @param deptDtos /
- * @return /
- */
- Object buildTree(List<DeptDto> deptDtos);
- /**
- * 获取
- * @param deptList
- * @return
- */
- List<String> getDeptChildren(List<Dept> deptList);
- /**
- * 验证是否被角色或用户关联
- * @param deptDtos /
- */
- void verification(Set<DeptDto> deptDtos);
- /**
- * 查询所有数据
- * @return /
- */
- List<DeptDto> getAllDept() throws Exception;
- }
|