From 63368d374f7c57bd05eb65eac2023e4698d1a7af Mon Sep 17 00:00:00 2001
From: gao <gaoleox@163>
Date: Thu, 21 May 2020 19:29:27 +0800
Subject: [PATCH] Merge branch 'master' of https://chonggaoxiao:xcg523511090712@gitee.com/chonggaoxiao/new_excoin.git
---
src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletAgentEntity.java | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletAgentEntity.java b/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletAgentEntity.java
index 5c87492..94c97df 100644
--- a/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletAgentEntity.java
+++ b/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletAgentEntity.java
@@ -1,6 +1,7 @@
package com.xcong.excoin.modules.member.entity;
import com.baomidou.mybatisplus.annotation.TableName;
+import com.xcong.excoin.common.contants.AppContants;
import com.xcong.excoin.common.system.base.BaseEntity;
import lombok.Data;
@@ -24,22 +25,22 @@
/**
* 可用余额
*/
- private BigDecimal availableBalance;
+ private BigDecimal availableBalance = AppContants.INIT_MONEY;
/**
* 总金额
*/
- private BigDecimal totalBalance;
+ private BigDecimal totalBalance = AppContants.INIT_MONEY;
/**
* 冻结金额
*/
- private BigDecimal frozenBalance;
+ private BigDecimal frozenBalance = AppContants.INIT_MONEY;
/**
* 借入资产金额
*/
- private BigDecimal borrowedFund;
+ private BigDecimal borrowedFund = AppContants.INIT_MONEY;
/**
* 钱包标识
--
Gitblit v1.9.1