From 73699775f5546177ce71e3bae33d83a8aa346793 Mon Sep 17 00:00:00 2001
From: gao <gaoleox@163>
Date: Mon, 25 May 2020 11:28:10 +0800
Subject: [PATCH] Merge branch 'master' of https://chonggaoxiao:xcg523511090712@gitee.com/chonggaoxiao/new_excoin.git

---
 src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java |   17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java b/src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java
index e6d2268..54f5d65 100644
--- a/src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java
+++ b/src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java
@@ -3,13 +3,14 @@
 import java.math.BigDecimal;
 import java.util.List;
 
-import com.xcong.excoin.modules.member.entity.MemberWalletCoinEntity;
-
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 
+/**
+ * @author xy
+ */
 @ApiModel(value = "币币账户信息返回", description = "币币账户信息返回")
-public class MemberWalletCoinVo extends MemberWalletCoinEntity{
+public class MemberWalletCoinVo {
 	
 	private static final long serialVersionUID = 1L;
 
@@ -20,7 +21,7 @@
 	private BigDecimal totalCny;
 	
 	@ApiModelProperty(value = "币种详情")
-	private List<MemberWalletCoinEntity> walletCoinEntities;
+	private List<MemberWalletCoinInfoVo> memberWalletCoinInfoVo;
 	
 	public BigDecimal getTotalUsdt() {
 		return totalUsdt;
@@ -34,11 +35,11 @@
 	public void setTotalCny(BigDecimal totalCny) {
 		this.totalCny = totalCny;
 	}
-	public List<MemberWalletCoinEntity> getWalletCoinEntities() {
-		return walletCoinEntities;
+	public List<MemberWalletCoinInfoVo> getMemberWalletCoinInfoVo() {
+		return memberWalletCoinInfoVo;
 	}
-	public void setWalletCoinEntities(List<MemberWalletCoinEntity> walletCoinEntities) {
-		this.walletCoinEntities = walletCoinEntities;
+	public void setMemberWalletCoinInfoVo(List<MemberWalletCoinInfoVo> memberWalletCoinInfoVo) {
+		this.memberWalletCoinInfoVo = memberWalletCoinInfoVo;
 	}
 
 }

--
Gitblit v1.9.1