xiaoyong931011
2020-06-07 88cd2c98f695945309ed9a0b52b11771653aa8c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.excoin.modules.coin.parameter.vo;
 
import java.util.List;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "MemberAgentIntoInfoVo", description = "佣金入账记录信息返回")
public class MemberAgentIntoInfoVo {
    
    @ApiModelProperty(value = "资产交易记录详情信息")
    private List<MemberAccountMoneyChangeInfoVo> memberAccountMoneyChangeInfoVo;
 
}