Helius
2021-04-07 79224bc3495cf80370855e9e2fe9e2acd1f3e63b
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;
 
}