| | |
| | | package com.ruoyi.project.system.mapper;
|
| | |
|
| | | import java.util.ArrayList;
|
| | | import java.util.List;
|
| | |
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.ruoyi.project.system.domain.SysUser;
|
| | | import org.springframework.beans.PropertyValues;
|
| | |
|
| | | /**
|
| | | * 用户表 数据层
|
| | | *
|
| | | * @author ruoyi
|
| | | */
|
| | | public interface SysUserMapper
|
| | | public interface SysUserMapper extends BaseMapper<SysUser>
|
| | | {
|
| | | /**
|
| | | * 根据条件分页查询用户列表
|
| | |
| | | * @return 结果
|
| | | */
|
| | | public SysUser checkEmailUnique(String email);
|
| | |
|
| | | List<SysUser> selectLists(List<Long> registrantIds);
|
| | |
|
| | | List<SysUser> selectUsersByIds(@Param("userIds") List<Long> userIds);
|
| | | }
|