| package com.xcong.excoin.modules.blackchain.model;  | 
|   | 
| import lombok.Data;  | 
|   | 
| @Data  | 
| public class XrpTx {  | 
|     private String transactionType;  | 
|     private Integer flags;  | 
|     private Integer sequence;  | 
|     private Integer destinationTag; // 对应的用户标签  | 
|     private Integer amount; // 金额 除以1000000 一百万  | 
|     private Integer fee;  // 手续费  | 
|     private String account; // 转账人  | 
|     private String destination; // 收款人(收款人是系统账户 说明是转入)  | 
|       | 
|   | 
|   | 
| }  |