From db8be7ac334e1297dcfc3111b926a598bf750002 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 31 Aug 2022 15:10:24 +0800
Subject: [PATCH] fix
---
src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java | 36 ++++++++++++++++++------------------
1 files changed, 18 insertions(+), 18 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..140182f 100644
--- a/src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java
+++ b/src/main/java/cc/mrbird/febs/dapp/entity/DappOnlineTransferEntity.java
@@ -10,30 +10,30 @@
@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;
private BigDecimal amount;
/**
- * 流水类型 1-买入 2-卖出 3-挖矿 4-奖励
+ * 流水类型 1-买入 2-卖出 3-挖矿 4-奖励 5-影子生态提现
*/
private Integer type;
--
Gitblit v1.9.1