gao
2020-05-25 73699775f5546177ce71e3bae33d83a8aa346793
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.xcong.excoin.modules.coin.parameter.vo;
 
import java.math.BigDecimal;
import java.util.List;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
/**
 * @author xy
 */
@ApiModel(value = "币币账户信息返回", description = "币币账户信息返回")
public class MemberWalletCoinVo {
    
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "账户总USDT")
    private BigDecimal totalUsdt;
    
    @ApiModelProperty(value = "账户总RMB")
    private BigDecimal totalCny;
    
    @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;
    }
 
}