Administrator
2025-12-24 fae2bc53d7baca6350ee457e623030ef9f2e2f37
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; // 收款人(收款人是系统账户 说明是转入)
    
 
 
}