| | |
| | | import java.util.stream.Collectors; |
| | | |
| | | import com.hrt.system.domain.vo.TreeSelect; |
| | | import com.hrt.system.mapper.SysRoleMapper; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import com.hrt.system.mapper.user.SysRoleMapper; |
| | | import org.springframework.stereotype.Service; |
| | | import com.hrt.common.core.constant.UserConstants; |
| | | import com.hrt.common.core.exception.ServiceException; |
| | |
| | | import com.hrt.system.api.domain.SysDept; |
| | | import com.hrt.system.api.domain.SysRole; |
| | | import com.hrt.system.api.domain.SysUser; |
| | | import com.hrt.system.mapper.SysDeptMapper; |
| | | import com.hrt.system.service.ISysDeptService; |
| | | import com.hrt.system.mapper.user.SysDeptMapper; |
| | | import com.hrt.system.service.user.ISysDeptService; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | /** |
| | | * 部门管理 服务实现 |
| | |
| | | @Service |
| | | public class SysDeptServiceImpl implements ISysDeptService |
| | | { |
| | | @Autowired |
| | | @Resource |
| | | private SysDeptMapper deptMapper; |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private SysRoleMapper roleMapper; |
| | | |
| | | /** |