| package com.xcong.excoin.modules.member.entity;  | 
|   | 
| import java.math.BigDecimal;  | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableName;  | 
| import com.xcong.excoin.common.entity.BaseEntity;  | 
|   | 
| import lombok.Data;  | 
|   | 
| @Data  | 
| @TableName("member_wallet_coin")  | 
| public class MemberWalletCoinEntity extends BaseEntity{  | 
|   | 
|   | 
|     private static final long serialVersionUID = 1L;  | 
|   | 
|     /**  | 
|      * 用户Id  | 
|      */  | 
|     private Long memberId;  | 
|   | 
|     /**  | 
|      * 可用余额  | 
|      */  | 
|     private BigDecimal availableBalance;  | 
|   | 
|     /**  | 
|      * 总金额  | 
|      */  | 
|     private BigDecimal totalBalance;  | 
|   | 
|     /**  | 
|      * 冻结金额  | 
|      */  | 
|     private BigDecimal frozenBalance;  | 
|   | 
|     /**  | 
|      * 借入资产金额  | 
|      */  | 
|     private BigDecimal borrowedFund;  | 
|   | 
|     /**  | 
|      * 钱包标识  | 
|      */  | 
|     private String walletCode;  | 
|   | 
|     /**  | 
|      * 钱包地址  | 
|      */  | 
|     private String walletAddress;  | 
|   | 
|     /**  | 
|      * 上次余额  | 
|      */  | 
|     private BigDecimal earlyBalance;  | 
|   | 
|     /**  | 
|      * 区块编号  | 
|      */  | 
|     private int blockNumber;  | 
|   | 
| }  |