From f2b9c03ba8c733a183e3568d85038e9a87f84e82 Mon Sep 17 00:00:00 2001
From: wzy <wzy19931122ai@163.com>
Date: Mon, 18 May 2020 23:13:00 +0800
Subject: [PATCH] add register interface code
---
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