xiaoyong931011
2020-05-25 7ec9fcb9639a487d3c06d3b94e0a098e43977f22
src/main/java/com/xcong/excoin/modules/coin/parameter/vo/MemberWalletCoinVo.java
@@ -5,10 +5,12 @@
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
 * @author xy
 */
@Data
@ApiModel(value = "币币账户信息返回", description = "币币账户信息返回")
public class MemberWalletCoinVo {
   
@@ -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;
   }
}