Helius
2020-11-13 e3bf96ad189e12d7c2201734e9121063e7f39a37
src/main/java/com/xcong/excoin/modules/member/mapper/MemberWalletCoinMapper.java
@@ -7,6 +7,7 @@
import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
import java.math.BigDecimal;
import java.util.HashMap;
public interface MemberWalletCoinMapper extends BaseMapper<MemberWalletCoinEntity> {
@@ -15,4 +16,6 @@
   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);
}