Administrator
5 days ago e3ce01f4de275faa6d2b05727cf21f70fc5cf73b
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;
 
}