package com.xcong.excoin.modules.member.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.xcong.excoin.modules.member.entity.MemberAuthenticationEntity; import com.xcong.excoin.modules.member.vo.MemberAuthenticationVo; public interface MemberAuthenticationMapper extends BaseMapper { MemberAuthenticationVo findMemberAuthenticationByMemberId(long id); }