huanghongfa
2021-09-06 3ce8a9b1b084bbbf69782f0e0c65f4d666251ca2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.panzhihua.common.model.vos.community.integral;
 
import java.util.List;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("小程序-用户积分页面返回参数")
public class ComActIntegralUserVO {
 
    @ApiModelProperty("用户积分总额")
    private Integer amount;
 
    @ApiModelProperty("用户绑定社区")
    private String communityName;
 
    @ApiModelProperty("用户积分列表")
    private List<ComActIntegralUserListVO> integralUserList;
}