From 1c043f5cda42801c0dcc830df5b95c6916dc5ec2 Mon Sep 17 00:00:00 2001
From: zainali5120 <512061637@qq.com>
Date: Thu, 16 Jul 2020 20:05:08 +0800
Subject: [PATCH] XRP同步提交

---
 src/main/java/com/xcong/excoin/modules/blackchain/model/XrpTx.java |   69 ++++++----------------------------
 1 files changed, 12 insertions(+), 57 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/blackchain/model/XrpTx.java b/src/main/java/com/xcong/excoin/modules/blackchain/model/XrpTx.java
index 513f593..9b7a883 100644
--- a/src/main/java/com/xcong/excoin/modules/blackchain/model/XrpTx.java
+++ b/src/main/java/com/xcong/excoin/modules/blackchain/model/XrpTx.java
@@ -1,63 +1,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; // 收款人(收款人是系统账户 说明是转入)
+	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;
-	}
-	
+
 
 }

--
Gitblit v1.9.1