xiaoyong931011
2022-05-26 ad2c2d53d756c8c9caa6e043c1868cfdf9736b9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
 
}