xiaoyong931011
2020-07-07 3bdb46a3ddc975a0adab0740630d02435da87639
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
package com.xcong.excoin.modules.coin.parameter.vo;
 
import java.math.BigDecimal;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "MemberWalletAgentInfoVo", description = "代理账户信息返回")
public class MemberWalletAgentInfoVo {
    
    /**
     * 总金额
     */
    @ApiModelProperty(value = "总金额")
    private BigDecimal totalBalance;
    
    /**
     * 总人民币金额
     */
    @ApiModelProperty(value = "总人民币金额")
    private BigDecimal totalRMBBalance;
 
}