xiaoyong931011
2020-05-31 9c8711046b00898717aa7a3b9f6dfee974d3f427
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.xcong.excoin.modules.blackchain.model;
 
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; // 收款人(收款人是系统账户 说明是转入)
    
    public String getTransactionType() {
        return TransactionType;
    }
    public void setTransactionType(String transactionType) {
        TransactionType = transactionType;
    }
    public Integer getFlags() {
        return Flags;
    }
    public void setFlags(Integer flags) {
        Flags = flags;
    }
    public Integer getSequence() {
        return Sequence;
    }
    public void setSequence(Integer sequence) {
        Sequence = sequence;
    }
    public Integer getDestinationTag() {
        return DestinationTag;
    }
    public void setDestinationTag(Integer destinationTag) {
        DestinationTag = destinationTag;
    }
    public Integer getAmount() {
        return Amount;
    }
    public void setAmount(Integer amount) {
        Amount = amount;
    }
    public Integer getFee() {
        return Fee;
    }
    public void setFee(Integer fee) {
        Fee = fee;
    }
    public String getAccount() {
        return Account;
    }
    public void setAccount(String account) {
        Account = account;
    }
    public String getDestination() {
        return Destination;
    }
    public void setDestination(String destination) {
        Destination = destination;
    }
    
 
}