liujie
2023-10-26 e030255c23c7ba3e2cbad1036a810d6d72fa864f
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.dsh.activity.feignclient.model;
 
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
@Data
public class ExchangeDetailsResponse {
 
    @ApiModelProperty(value = "记录id")
    private Long detailsId;
 
    @ApiModelProperty(value = "商品名称")
    private String goodName;
 
    @ApiModelProperty(value = "积分")
    private Integer integral;
 
    @ApiModelProperty(value = "现金")
    private BigDecimal cash;
 
    @ApiModelProperty(value = "兑换方式(1=积分,2=积分+现金)")
    private Integer exchangeType;
 
    @ApiModelProperty(value = "有效期开始时间")
    private String startTime;
 
    @ApiModelProperty(value = "有效期结束时间")
    private String endTime;
 
    @ApiModelProperty(value = "使用状态 (1已使用 2未使用)")
    private Integer useStatus;
 
    @ApiModelProperty(value = "商品类型  1实物 2课包 3门票 4优惠券")
    private Integer goodType;
 
 
    private Integer  userId;
 
 
 
 
    private List<Integer> rid;
 
    private List<Integer> sid;
 
    @ApiModelProperty(value = "1日卡 2月卡 3季卡 4年卡")
    private Integer cardType;
 
}