fxi
wzy
2022-11-02 6861a79b08b0e855942a9874b44cdf260a0eebc7
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);
 
}