| | |
| | | import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.HashMap;
|
| | |
|
| | | public interface MemberWalletCoinMapper extends BaseMapper<MemberWalletCoinEntity> {
|
| | |
|
| | |
| | | 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);
|
| | | }
|