From 93f666908b8b84336aed251a1cc22b49b5c4b12f Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Fri, 29 Jan 2021 17:25:48 +0800 Subject: [PATCH] Merge branch 'whole_new' of https://gitee.com/chonggaoxiao/new_excoin into whole_new --- src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java | 23 +++-------------------- 1 files changed, 3 insertions(+), 20 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 54f5d65..ad0580e 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 @@ -5,11 +5,13 @@ import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; +import lombok.Data; /** * @author xy */ -@ApiModel(value = "币币账户信息返回", description = "币币账户信息返回") +@Data +@ApiModel(value = "MemberWalletCoinVo", description = "币币账户信息返回") public class MemberWalletCoinVo { private static final long serialVersionUID = 1L; @@ -22,24 +24,5 @@ @ApiModelProperty(value = "币种详情") private List<MemberWalletCoinInfoVo> memberWalletCoinInfoVo; - - 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<MemberWalletCoinInfoVo> getMemberWalletCoinInfoVo() { - return memberWalletCoinInfoVo; - } - public void setMemberWalletCoinInfoVo(List<MemberWalletCoinInfoVo> memberWalletCoinInfoVo) { - this.memberWalletCoinInfoVo = memberWalletCoinInfoVo; - } } -- Gitblit v1.9.1