From 09c88cc68d65337a98703b061107f09bdd00f1fe Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Wed, 06 Apr 2022 10:49:57 +0800
Subject: [PATCH] fix

---
 src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java b/src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
index 171ee51..ed70cd5 100644
--- a/src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
+++ b/src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
@@ -9,7 +9,7 @@
 import java.util.Date;
 
 /**
- * @author wzy
+ * @author 
  * @date 2022-03-21
  **/
 @Data
@@ -21,11 +21,12 @@
 
     public DappFundFlowEntity() {}
 
-    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status) {
+    public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, Integer fee) {
         this.memberId = memberId;
         this.amount = amount;
         this.type = type;
         this.status = status;
+        this.fee = fee;
 
         this.setCreateBy("system");
         this.setUpdateBy("system");
@@ -50,4 +51,6 @@
 
     @TableField(exist = false)
     private String address;
+
+    private Integer fee;
 }

--
Gitblit v1.9.1