From 6bc7d55344a1dab02b6a187ea4b5341ae7c29f1b Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Mon, 22 Jul 2024 12:34:44 +0800
Subject: [PATCH] 逻辑
---
src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java b/src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java
index 73da44e..025ebc4 100644
--- a/src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java
+++ b/src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java
@@ -10,23 +10,23 @@
@TableName("dapp_online_transfer")
public class DappOnlineTransferEntity extends BaseEntity {
- public DappOnlineTransferEntity() {}
-
- public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String batchNo) {
- new DappOnlineTransferEntity(address, amount, type, targetType, symbol, fromType, "BSC", batchNo);
- }
-
- public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String chain, String batchNo) {
- this.address = address;
- this.amount = amount;
- this.type = type;
- this.targetType = targetType;
- this.symbol = symbol;
- this.chain = chain;
- this.batchNo = batchNo;
- this.fromType = fromType;
- this.hasFinish = 2;
- }
+// public DappOnlineTransferEntity() {}
+//
+// public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String batchNo) {
+// new DappOnlineTransferEntity(address, amount, type, targetType, symbol, fromType, "BSC", batchNo);
+// }
+//
+// public DappOnlineTransferEntity(String address, BigDecimal amount, Integer type, Integer targetType, String fromType, String symbol, String chain, String batchNo) {
+// this.address = address;
+// this.amount = amount;
+// this.type = type;
+// this.targetType = targetType;
+// this.symbol = symbol;
+// this.chain = chain;
+// this.batchNo = batchNo;
+// this.fromType = fromType;
+// this.hasFinish = 2;
+// }
private String address;
--
Gitblit v1.9.1