Helius
2020-11-13 69926c94a4ee935f6dd3f8878ebecb6e9c1d7e0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.excoin.modules.coin.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.coin.entity.TrcAddressEntity;
import org.apache.ibatis.annotations.Param;
 
/**
 * @author wzy
 * @date 2020-11-09
 **/
public interface TrcAddressDao extends BaseMapper<TrcAddressEntity> {
 
    TrcAddressEntity selectSrcAddressByMemberId(@Param("memberId") Long memberId);
 
    TrcAddressEntity selectOneSrcAddressUnUse();
}