无关风月
2025-03-30 bf6dec40a0fffeb65d698640a2ca1afdb7576754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dsh.account.model.vo.userBenefitDetail;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class PointMallDetailsResponse {
 
    @ApiModelProperty(value = "头像")
    private String headImg;
 
    @ApiModelProperty(value = "姓名")
    private String name;
 
    @ApiModelProperty(value = "可用积分")
    private Integer integral;
 
    @ApiModelProperty(value = "商品列表")
    private List<Goods> goods;
 
}