From d23645e976981bc9b670eea1d469fe8a36be309c Mon Sep 17 00:00:00 2001
From: KKSU <15274802129@163.com>
Date: Wed, 17 Apr 2024 17:19:53 +0800
Subject: [PATCH] 55测试环境

---
 src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletCoinEntity.java |  124 +++++++++++++++++++++--------------------
 1 files changed, 63 insertions(+), 61 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletCoinEntity.java b/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletCoinEntity.java
index cab2390..f2bd58c 100644
--- a/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletCoinEntity.java
+++ b/src/main/java/com/xcong/excoin/modules/member/entity/MemberWalletCoinEntity.java
@@ -1,61 +1,63 @@
-package com.xcong.excoin.modules.member.entity;
-
-import com.baomidou.mybatisplus.annotation.TableName;
-import com.xcong.excoin.common.system.base.BaseEntity;
-import lombok.Data;
-
-import java.math.BigDecimal;
-
-/**
- * @author wzy
- * @date 2020-05-18
- **/
-@Data
-@TableName("member_wallet_coin")
-public class MemberWalletCoinEntity extends BaseEntity {
-
-    /**
-     * 用户Id
-     */
-    private Long memberId;
-
-    /**
-     * 可用余额
-     */
-    private BigDecimal availableBalance;
-
-    /**
-     * 总金额
-     */
-    private BigDecimal totalBalance;
-
-    /**
-     * 冻结金额
-     */
-    private BigDecimal frozenBalance;
-
-    /**
-     * 借入资产金额
-     */
-    private BigDecimal borrowedFund;
-
-    /**
-     * 钱包标识
-     */
-    private String walletCode;
-
-    /**
-     * 钱包地址
-     */
-    private String walletAddress;
-
-    /**
-     * 上次余额
-     */
-    private BigDecimal earlyBalance;
-
-    /**
-     * 区块编号
-     */
-    private int blockNumber;
-}
+package com.xcong.excoin.modules.member.entity;
+
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.xcong.excoin.common.system.base.BaseEntity;
+import lombok.Data;
+
+import java.math.BigDecimal;
+
+/**
+ * @author wzy
+ * @date 2020-05-18
+ **/
+@Data
+@TableName("member_wallet_coin")
+public class MemberWalletCoinEntity extends BaseEntity {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+     * 用户Id
+     */
+    private Long memberId;
+
+    /**
+     * 可用余额
+     */
+    private BigDecimal availableBalance;
+
+    /**
+     * 总金额
+     */
+    private BigDecimal totalBalance;
+
+    /**
+     * 冻结金额
+     */
+    private BigDecimal frozenBalance;
+
+    /**
+     * 借入资产金额
+     */
+    private BigDecimal borrowedFund;
+
+    /**
+     * 钱包标识
+     */
+    private String walletCode;
+
+    /**
+     * 钱包地址
+     */
+    private String walletAddress;
+
+    /**
+     * 上次余额
+     */
+    private BigDecimal earlyBalance;
+
+    /**
+     * 区块编号
+     */
+    private int blockNumber;
+}

--
Gitblit v1.9.1