From 8118b1f532510dd1c1dfb00f62ad851c9dc9d440 Mon Sep 17 00:00:00 2001 From: wzy <wzy19931122ai@163.com> Date: Wed, 20 May 2020 22:56:01 +0800 Subject: [PATCH] modify regist and login interface --- 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