From 28eb26d68f7a2a4e6b316c3ea9f511aa143db66e Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Mon, 30 Sep 2024 16:57:18 +0800
Subject: [PATCH] 55测试环境
---
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