Helius
2020-12-28 7ba7366a8c6ce8019339e433b218386645cb5312
src/main/java/com/xcong/excoin/modules/member/mapper/MemberWalletCoinMapper.java
@@ -1,12 +1,22 @@
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);
   int updateTdCoinWalletTrc20(@Param("money") BigDecimal money, @Param("memberId") Long memberId);
   HashMap<String, Object> selectMemberWalletCoinByMemberId(@Param("memberId") Long memberId);
}