Helius
2020-11-03 231c4a3b97fff265545e88931d230b97290a9832
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
 
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);
}