xiaoyong931011
2022-10-31 d594c9b034a979086a3fbea239f7cc7416002a72
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);
 
}