无关风月
10 小时以前 28a60b0977d66b75fb9a2c3306840bc18ec271f6
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package com.dsh.guns.modular.system.model.vo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
import java.util.List;
 
/**
 * 会员权益明细列表
 */
@Data
public class VipDetailVO {
    @ApiModelProperty(value = "主键")
    private Integer id;
 
    @ApiModelProperty(value = "用户id")
    private Integer appUserId;
    @ApiModelProperty(value = "用户名称")
    private String appUserName;
    @ApiModelProperty(value = "用户电话")
    private String appUserPhone;
 
    @ApiModelProperty(value = "使用状态 1待使用 2已使用 3已过期")
    private Integer status;
 
    @ApiModelProperty(value = "获取时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 
    private Date insertTime;
 
    @ApiModelProperty(value = "会员id")
    private Integer vipId;
    @ApiModelProperty(value = "会员名称")
    private String vipName;
    @ApiModelProperty(value = "会员权益类型 1优惠券 2门票")
    private Integer type;
 
    @ApiModelProperty(value = "会员支付记录id")
    private Integer vipPaymentId;
 
    @ApiModelProperty(value = "优惠券id")
    private Integer couponId;
 
    @ApiModelProperty(value = "门票名称/优惠券名称")
    private String ticketName;
 
    @ApiModelProperty(value = "开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date startTime;
 
    @ApiModelProperty(value = "结束时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date endTime;
 
    @ApiModelProperty(value = "可用次数")
    private Integer useCount;
 
    @ApiModelProperty(value = "使用门店id")
    private Integer useStoreId;
    @ApiModelProperty(value = "门店名称")
    private String storeName;
    @ApiModelProperty(value = "使用场地id")
    private Integer useSiteId;
 
 
    @ApiModelProperty(value = "使用商品/场地名称")
    private String goodsName;
 
    @ApiModelProperty(value = "使用时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
 
    private Date useTime;
 
    @ApiModelProperty(value = "运营商id")
    private Integer operatorId;
    @ApiModelProperty(value = "运营商名称")
    private String operatorName;
 
    @ApiModelProperty(value = "用户优惠券id")
    private Long userCouponId;
}