xiaoyong931011
2022-02-23 29310bedd35effb09afa54617a0cfd10a079262e
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 = "MemberAccountMoneyChangeVo", description = "资产交易记录信息返回")
public class MemberAccountMoneyChangeVo {
    
    @ApiModelProperty(value = "资产交易记录详情信息")
    private List<MemberAccountMoneyChangeInfoVo> memberAccountMoneyChangeInfoVo;
 
}