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;
|
}
|
|
|
}
|