puzhibing
2023-07-10 f95325fd2635a9af08c0acac70e70379978d128a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.dsh.account.model.vo.userBenefitDetail;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class IntegralDetailsResponse {
 
    @ApiModelProperty(value = "可用积分")
    private Integer wpGold;
 
    @ApiModelProperty(value = "记录列表")
    private List<IntegralsData> detailList;
 
    @Data
    public static class IntegralsData{
 
        @ApiModelProperty(value = "名称")
        private String consumeName;
 
        @ApiModelProperty(value = "时间")
        private String consumeTime;
 
        @ApiModelProperty(value = "金额 例如 -90 ")
        private String consumeAmount;
 
        @ApiModelProperty(value = "1扣减 2增加")
        private Integer detailsType;
 
    }
 
}