From 640bd93ea79a38019f908e0faae5ec4fa7ce5437 Mon Sep 17 00:00:00 2001 From: Derran Date: Wed, 7 Jan 2026 16:37:35 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=AB=E7=91=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/aggregate/walletaccount/WalletAccountAggregate.java | 1 + 1 file changed, 1 insertion(+) diff --git a/dating-agency-mall-server/src/main/java/com/qniao/dam/domain/aggregate/walletaccount/WalletAccountAggregate.java b/dating-agency-mall-server/src/main/java/com/qniao/dam/domain/aggregate/walletaccount/WalletAccountAggregate.java index b82967c..5fe7488 100644 --- a/dating-agency-mall-server/src/main/java/com/qniao/dam/domain/aggregate/walletaccount/WalletAccountAggregate.java +++ b/dating-agency-mall-server/src/main/java/com/qniao/dam/domain/aggregate/walletaccount/WalletAccountAggregate.java @@ -28,6 +28,7 @@ public class WalletAccountAggregate { walletAccount.setAvailableBalance(walletAccount.getAvailableBalance().add(income)); walletAccount.setTotalBalance(walletAccount.getAvailableBalance().add(walletAccount.getFrozenBalance())); WalletAccountRecord record = WalletAccountRecord.build(tradeType, income, true, originalBalance, walletAccount.getTotalBalance()); + record.setRemark(remark); walletAccount.setRecordList(Collections.singletonList(record)); } }