gao
2020-05-27 84d6908d149ba8b0f8a4ea335e71bcc0778d17f0
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;
   }
}