zainali5120
2020-07-16 1c043f5cda42801c0dcc830df5b95c6916dc5ec2
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
package com.xcong.excoin.modules.blackchain.model;
 
public class XrpTransactions {
 
    private String hash;
    private Integer ledger_index;
    private String date;//2019-10-28T15:01:01+00:00
    private XrpTx tx;
    
    public String getHash() {
        return hash;
    }
    public void setHash(String hash) {
        this.hash = hash;
    }
    public Integer getLedger_index() {
        return ledger_index;
    }
    public void setLedger_index(Integer ledger_index) {
        this.ledger_index = ledger_index;
    }
    public String getDate() {
        return date;
    }
    public void setDate(String date) {
        this.date = date;
    }
    public XrpTx getTx() {
        return tx;
    }
    public void setTx(XrpTx tx) {
        this.tx = tx;
    }
    
    
}