| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.common.core.domain.entity.SysUser; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | import java.util.Set; |
| | | |
| | | /** |
| | | * 用户表 数据层 |
| | |
| | | List<SysUser> selectUserListAll(); |
| | | |
| | | List<SysUser> selectList(List<Long> registrantIds); |
| | | |
| | | List<SysUser> selectUsersByIds(@Param("userIds") List<Long> userIds); |
| | | |
| | | /** |
| | | * 批量查询用户信息 |
| | | * @param userIds 用户ID集合 |
| | | * @return 用户列表 |
| | | */ |
| | | List<SysUser> selectBatchIds(@Param("userIds") Set<Long> userIds); |
| | | } |