package com.ruoyi.project.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.project.system.domain.SysUserDept; import com.ruoyi.project.system.domain.vo.SysUserDeptVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface SysUserDeptMapper extends BaseMapper { List userLoginFacotryList(@Param("userDeptVo") SysUserDeptVo userDeptVo); /** * 根据部门ID查询关联的用户ID列表 */ List selectUserIdByDeptId(@Param("deptId") Long deptId); }