Helius
2020-11-10 9fe13ab6626a7abadcd0d67ca780363cd92cb024
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.excoin.modules.member.mapper;
 
import com.xcong.excoin.modules.member.entity.TdCoinWallet;
import org.apache.ibatis.annotations.Param;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
 
import java.math.BigDecimal;
import java.util.HashMap;
 
public interface MemberWalletCoinMapper extends BaseMapper<MemberWalletCoinEntity> {
 
    MemberWalletCoinEntity findWalletCoinByMemberIdAndWalletCode(@Param("memberId")Long memberId, @Param("walletCode")String walletCode);
 
    TdCoinWallet selectTdCoinWalletByAddress(@Param("address") String address, @Param("symbol") String symbol);
 
    int updateTdCoinWalletAvaliable(@Param("money") BigDecimal money, @Param("address") String address);
 
    HashMap<String, Object> selectMemberWalletCoinByMemberId(@Param("memberId") Long memberId);
}