123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.kmall.admin.service.impl;
- import com.kmall.admin.dao.SysDeptDao;
- import com.kmall.admin.entity.SysDeptEntity;
- import com.kmall.admin.service.SysDeptService;
- import com.qiniu.util.StringUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.Map;
- @Service("sysDeptService")
- public class SysDeptServiceImpl implements SysDeptService {
- @Autowired
- private SysDeptDao sysDeptDao;
- @Override
- public SysDeptEntity queryObject(Long deptId) {
- return sysDeptDao.queryObject(deptId);
- }
- @Override
- public List<SysDeptEntity> queryList(Map<String, Object> map) {
- return sysDeptDao.queryList(map);
- }
- @Override
- public void save(SysDeptEntity sysDept) {
- sysDeptDao.save(sysDept);
- }
- @Override
- public void update(SysDeptEntity sysDept) {
- sysDeptDao.update(sysDept);
- }
- @Override
- public void delete(Long deptId) {
- sysDeptDao.delete(deptId);
- }
- @Override
- public List<Long> queryDetpIdList(Long parentId) {
- return sysDeptDao.queryDetpIdList(parentId);
- }
- @Override
- public String getSubDeptIdList(Long deptId) {
- //部门及子部门ID列表
- List<Long> deptIdList = new ArrayList<>();
- //获取子部门ID
- List<Long> subIdList = queryDetpIdList(deptId);
- getDeptTreeList(subIdList, deptIdList);
- //添加本部门
- deptIdList.add(deptId);
- String deptFilter = StringUtils.join(deptIdList, ",");
- return deptFilter;
- }
- /**
- * 递归
- */
- public void getDeptTreeList(List<Long> subIdList, List<Long> deptIdList) {
- for (Long deptId : subIdList) {
- List<Long> list = queryDetpIdList(deptId);
- if (list.size() > 0) {
- getDeptTreeList(list, deptIdList);
- }
- deptIdList.add(deptId);
- }
- }
- }
|