xiaoyong931011
2022-02-23 29310bedd35effb09afa54617a0cfd10a079262e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; // 收款人(收款人是系统账户 说明是转入)
    
 
 
}