fix
Helius
2022-11-16 0c97e2b47a10592e382bddbe80b9662c6dfaa5fc
1
2
3
4
5
6
7
8
9
10
11
12
package cc.mrbird.febs.dapp.mapper;
 
import cc.mrbird.febs.dapp.entity.DappMemberAddress;
import cc.mrbird.febs.dapp.vo.ApiAddressInfoVo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
 
public interface DappMemberAddressDao extends BaseMapper<DappMemberAddress> {
 
    ApiAddressInfoVo selectByMemberId(@Param("memberId")Long id);
 
}