| | |
| | | package com.ruoyi.project.system.mapper;
|
| | |
|
| | | import java.util.ArrayList;
|
| | | import java.util.List;
|
| | |
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import com.ruoyi.collaborativeApproval.pojo.MeetingMinutes;
|
| | | import com.ruoyi.framework.aspectj.lang.annotation.DataScope;
|
| | | import com.ruoyi.project.system.domain.SysUser;
|
| | | import org.apache.ibatis.annotations.Mapper;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.ruoyi.project.system.domain.SysUser;
|
| | | import org.springframework.beans.PropertyValues;
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * 用户表 数据层
|
| | |
| | | * @param sysUser 用户信息
|
| | | * @return 用户信息集合信息
|
| | | */
|
| | | @DataScope(deptAlias = "u", userAlias = "u")
|
| | | public List<SysUser> selectUserList(SysUser sysUser);
|
| | |
|
| | | /**
|
| | |
| | | */
|
| | | public SysUser checkEmailUnique(String email);
|
| | |
|
| | | List<SysUser> selectList(List<Long> registrantIds);
|
| | | List<SysUser> selectRegistrantIds(List<Long> registrantIds);
|
| | |
|
| | | List<SysUser> selectUsersByIds(@Param("userIds") List<Long> userIds);
|
| | |
|