puzhibing
2023-06-13 7860e5cb6db60aeb82c640651998f8294635df5b
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
package com.dsh.course.feignClient.activity.model;
 
import lombok.Data;
 
import java.util.Date;
 
@Data
public class UserCouponRecordRes {
    /**
     * 主键
     */
    private Integer id;
    /**
     * 金额
     */
    private Double money;
    /**
     * 满减的满金额
     */
    private Double fullMoney;
    /**
     * 过期时间
     */
    private Date expirationTime;
    /**
     * 添加时间
     */
    private Date insertTime;
    /**
     * 企业id
     */
    private Integer companyId;
    /**
     * 状态(1=未使用,2=已使用,3=已过期)
     */
    private Integer state;
    /**
     * 使用结束时间
     */
    private Date endTime;
    /**
     * 优惠券使用类型(0=通用,1=专车,4=小件物流)
     */
    private Integer couponUseType;
    /**
     * 优惠券类型(1=抵扣券,2=满减券)
     */
    private Integer couponType;
    /**
     * 用户id
     */
    private Integer userId;
    /**
     * 优惠券id
     * @return
     */
    private Integer couponId;
    /**
     * 活动id
     * @return
     */
    private Integer couponActivityId;
    /**
     * 活动类型(1=赠送活动,2=注册,3=邀请,4=充值)
     * @return
     */
    private Integer activityType;
    /**
     * 充值记录id
     * @return
     */
    private Integer paymentRecordId;
}