xiaoyong931011
2022-11-11 e87cd6e99ee1993541badeae4c792db0c34b6cd4
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);
 
}