xiaoyong931011
2022-06-27 c58f827497d23377502347de5c63cd57303b6617
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.xcong.farmer.cms.modules.system.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.xcong.farmer.cms.modules.system.entity.UserEntity;
import com.xcong.farmer.cms.modules.system.vo.AdminUserVo;
import org.apache.ibatis.annotations.Param;
 
public interface UserMapper extends BaseMapper<UserEntity> {
 
    IPage<AdminUserVo> selectAdminUserVoInPage(Page<AdminUserVo> page, @Param("record") UserEntity userEntity);
 
    UserEntity selectByUserNameAndPassword(@Param("username")String username, @Param("password")String md5Password);
}