zainali5120
2020-07-16 1c043f5cda42801c0dcc830df5b95c6916dc5ec2
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; // 收款人(收款人是系统账户 说明是转入)
    
 
 
}