| | |
| | | import java.util.List;
|
| | |
|
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| | | import com.ruoyi.collaborativeApproval.pojo.MeetingMinutes;
|
| | | import org.apache.ibatis.annotations.Mapper;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | |
| | | * @author ruoyi
|
| | | */
|
| | | @Mapper
|
| | | public interface SysUserMapper
|
| | | public interface SysUserMapper extends BaseMapper<SysUser>
|
| | | {
|
| | | /**
|
| | | * 根据条件分页查询用户列表
|
| | |
| | | public int resetUserPwd(@Param("userName") String userName, @Param("password") String password);
|
| | |
|
| | | /**
|
| | | * 重置所有未删除用户的密码
|
| | | *
|
| | | * @param password 密码
|
| | | * @return 结果
|
| | | */
|
| | | public int resetAllUserPwd(@Param("password") String password);
|
| | |
|
| | | /**
|
| | | * 通过用户ID删除用户
|
| | | *
|
| | | * @param userId 用户ID
|
| | |
| | | */
|
| | | 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);
|
| | |
|