From 2f4fb959e8e4457b2da51704b54f15e51454140b Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 25 May 2020 16:51:05 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/chonggaoxiao/new_excoin.git
---
src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java | 30 +++++++-----------------------
1 files changed, 7 insertions(+), 23 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..abdd2de 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,16 @@
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;
+import lombok.Data;
+/**
+ * @author xy
+ */
+@Data
@ApiModel(value = "币币账户信息返回", description = "币币账户信息返回")
-public class MemberWalletCoinVo extends MemberWalletCoinEntity{
+public class MemberWalletCoinVo {
private static final long serialVersionUID = 1L;
@@ -20,25 +23,6 @@
private BigDecimal totalCny;
@ApiModelProperty(value = "币种详情")
- private List<MemberWalletCoinEntity> walletCoinEntities;
-
- public BigDecimal getTotalUsdt() {
- return totalUsdt;
- }
- public void setTotalUsdt(BigDecimal totalUsdt) {
- this.totalUsdt = totalUsdt;
- }
- public BigDecimal getTotalCny() {
- return totalCny;
- }
- public void setTotalCny(BigDecimal totalCny) {
- this.totalCny = totalCny;
- }
- public List<MemberWalletCoinEntity> getWalletCoinEntities() {
- return walletCoinEntities;
- }
- public void setWalletCoinEntities(List<MemberWalletCoinEntity> walletCoinEntities) {
- this.walletCoinEntities = walletCoinEntities;
- }
+ private List<MemberWalletCoinInfoVo> memberWalletCoinInfoVo;
}
--
Gitblit v1.9.1