BUG
jiangqs
2023-04-24 aa2eae024f8f251c8e2b9eace5351dea7e315ed7
hrt-modules/hrt-system/src/main/java/com/hrt/system/service/impl/SysDeptServiceImpl.java
@@ -6,8 +6,7 @@
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;
@@ -19,8 +18,10 @@
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;
/**
 * 部门管理 服务实现
@@ -30,10 +31,10 @@
@Service
public class SysDeptServiceImpl implements ISysDeptService
{
    @Autowired
    @Resource
    private SysDeptMapper deptMapper;
    @Autowired
    @Resource
    private SysRoleMapper roleMapper;
    /**