xiaoyong931011
2022-10-22 f6b6220571d7758a512202fd146e50025e684c1c
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);
 
}