| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.common.core.domain.entity.SysUser; |
| | | import com.ruoyi.system.query.SysUserQuery; |
| | | import com.ruoyi.system.vo.SysUserVO; |
| | | import java.util.List; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 用户表 数据层 |
| | |
| | | * @author ruoyi |
| | | */ |
| | | @Mapper |
| | | public interface SysUserMapper extends BaseMapper<SysUser> |
| | | { |
| | | public interface SysUserMapper extends BaseMapper<SysUser> { |
| | | |
| | | /** |
| | | * 根据条件分页查询用户列表 |
| | | * |
| | |
| | | |
| | | /** |
| | | * 查询用户集合通过用户id |
| | | * |
| | | * @param userIds |
| | | * @return |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 获取用户黑名单列表 |
| | | * |
| | | * @param |
| | | * @return |
| | | */ |
| | |
| | | |
| | | List<SysUser> selectAllList(); |
| | | |
| | | List<SysUserVO> pageList(@Param("query")SysUserQuery query, @Param("pageInfo")PageInfo<SysUserVO> pageInfo); |
| | | Page<SysUserVO> pageList(@Param("query") SysUserQuery query, |
| | | @Param("page") Page<SysUserVO> page); |
| | | |
| | | void updatePassword(@Param("id") Long id,@Param("s") String s); |
| | | |