From 1f064e680edd4a119a3d1046cdc413caa3fa0db3 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Sat, 22 Jul 2023 12:54:27 +0800
Subject: [PATCH] 智能合约
---
src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java | 11 +++++++++++
1 files changed, 11 insertions(+), 0 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 187b386..df3dc5e 100644
--- a/src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
+++ b/src/main/java/cc/mrbird/febs/dapp/entity/DappFundFlowEntity.java
@@ -71,6 +71,17 @@
this.systemProfitId = systemProfitId;
}
+ public DappFundFlowEntity(Long memberId, BigDecimal amount, Integer type, Integer status, BigDecimal fee, String fromHash,String toHash,Long systemProfitId) {
+ this.memberId = memberId;
+ this.amount = amount;
+ this.type = type;
+ this.status = status;
+ this.fee = fee;
+ this.fromHash = fromHash;
+ this.toHash = toHash;
+ this.systemProfitId = systemProfitId;
+ }
+
private Long memberId;
private BigDecimal amount;
--
Gitblit v1.9.1