package com.xcong.excoin.modules.authentication.service.Impl; import java.awt.List; import javax.annotation.Resource; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.xcong.excoin.common.entity.QueryRequest; import com.xcong.excoin.modules.authentication.entity.MemberAuthenticationEntity; import com.xcong.excoin.modules.authentication.mapper.AuthenticationMapper; import com.xcong.excoin.modules.authentication.service.AuthenticationService; import com.xcong.excoin.modules.member.mapper.MemberMapper; @Service public class AuthenticationServiceImpl extends ServiceImpl implements AuthenticationService{ @Resource MemberMapper memberMapper; @Override public IPage findAuthenticationListInPage(MemberAuthenticationEntity memberAuthenticationEntity, QueryRequest request) { Page page = new Page<>(request.getPageNum(), request.getPageSize()); return this.baseMapper.selectAuthenticationListInPage(page, memberAuthenticationEntity); } }