From 6cc49e252929c182f0e47e4b79089cd51e1465ab Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 15 Nov 2022 11:29:33 +0800
Subject: [PATCH] Merge branch 'IGT-dev' of http://120.27.238.55:7000/r/sys-dapp into IGT-dev
---
src/main/java/cc/mrbird/febs/dapp/entity/DappSdeWithdrawFeeEntity.java | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/main/java/cc/mrbird/febs/dapp/entity/DappSdeWithdrawFeeEntity.java b/src/main/java/cc/mrbird/febs/dapp/entity/DappSdeWithdrawFeeEntity.java
index fbbbed4..791e9a0 100644
--- a/src/main/java/cc/mrbird/febs/dapp/entity/DappSdeWithdrawFeeEntity.java
+++ b/src/main/java/cc/mrbird/febs/dapp/entity/DappSdeWithdrawFeeEntity.java
@@ -24,13 +24,16 @@
private Integer hasReturn;
+ private String outAddressName;
+
public DappSdeWithdrawFeeEntity() {}
- public DappSdeWithdrawFeeEntity(Long memberId, String address, BigDecimal amount, Long sdeFlowId) {
+ public DappSdeWithdrawFeeEntity(Long memberId, String address, BigDecimal amount, Long sdeFlowId, String outAddressName) {
this.memberId = memberId;
this.address = address;
this.amount = amount;
this.sdeFlowId = sdeFlowId;
this.hasReturn = 2;
+ this.outAddressName = outAddressName;
}
}
--
Gitblit v1.9.1