File was renamed from src/main/java/com/xcong/excoin/modules/member/mapper/MemberMapper.java |
| | |
| | | package com.xcong.excoin.modules.member.mapper; |
| | | package com.xcong.excoin.modules.agent.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.excoin.modules.member.entity.MemberEntity; |
| | | import com.xcong.excoin.modules.agent.entity.MemberEntity; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | |
| | | public interface MemberMapper extends BaseMapper<MemberEntity> { |
| | | |
| | | IPage<MemberEntity> selectMemberListInPage(Page<MemberEntity> page, @Param("record") MemberEntity memberEntity); |
| | | |
| | | MemberEntity selectMemberByInviteIdAndRefererId(@Param("inviteId") String inviteId, @Param("refererId") String refererId); |
| | | } |