From 0b688b0eee75f73af8300bd881a58a858dc8cc47 Mon Sep 17 00:00:00 2001 From: gao <gaoleox@163> Date: Fri, 22 May 2020 14:54:32 +0800 Subject: [PATCH] 快捷买卖接口 --- 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