| | |
| | | package com.ruoyi.system.mapper; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.system.pojo.vo.SysUserPageListVO; |
| | | import com.ruoyi.system.pojo.vo.SysUserVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import com.ruoyi.common.core.domain.entity.SysUser; |
| | | |
| | | import javax.validation.constraints.NotEmpty; |
| | | |
| | | /** |
| | | * 用户表 数据层 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public SysUser checkEmailUnique(String email); |
| | | |
| | | IPage<SysUserPageListVO> getSysUserPageList(@Param("page") IPage<SysUserPageListVO> page, @Param("nickName") String nickName,@Param("phone") Integer phone, @Param("status") String status); |
| | | |
| | | R<SysUserVO> getSysUserVO(@Param("userId") Long userId); |
| | | |
| | | SysUser selectuserByPhone(@Param("phonenumber") String phonenumber); |
| | | } |