Pu Zhibing
9 小时以前 b293f932d31971dfff8769f61ad39de50fd28c43
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package com.supersavedriving.user.modular.system.model;
 
import com.baomidou.mybatisplus.enums.IdType;
import java.math.BigDecimal;
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
import com.baomidou.mybatisplus.annotations.Version;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * <p>
 * 代检车活动表
 * </p>
 *
 * @author administrator
 * @since 2025-08-04
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("t_check_car_activity")
public class TCheckCarActivity extends Model<TCheckCarActivity> {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 活动名称
     */
    private String name;
    /**
     * 开始时间
     */
    private Date startTime;
    /**
     * 结束时间
     */
    private Date endTime;
    /**
     * 分公司id
     */
    private Integer branchOfficeId;
    /**
     * 省
     */
    private String provinceName;
    /**
     * 省code
     */
    private String provinceCode;
    /**
     * 市
     */
    private String cityName;
    /**
     * 市code
     */
    private String cityCode;
    /**
     * 区
     */
    private String districtName;
    /**
     * 区code
     */
    private String districtCode;
    /**
     * 活动优惠券名称
     */
    private String couponName;
    /**
     * 活动优惠券数量
     */
    private Integer couponNum;
    /**
     * 已领取数量
     */
    private Integer receivedNum;
    /**
     * 活动优惠券面额
     */
    private BigDecimal couponAmount;
    /**
     * 优惠券有效期(天)
     */
    private Integer duration;
    /**
     * 活动内容说明
     */
    private String explainContent;
    /**
     * 审核状态 0:待审核,1:审核通过,2:审核驳回
     */
    private Integer auditStatus;
    /**
     * 驳回原因
     */
    private String rejectReason;
    /**
     * 审核时间
     */
    private Date auditTime;
    /**
     * 是否暂停 0:否 ,1:是
     */
    private Integer pauseFlag;
    /**
     * 活动二维码地址
     */
    private String qrCode;
    /**
     * 添加时间
     */
    private Date createTime;
    /**
     * 更新时间
     */
    private Date updateTime;
    /**
     * 创建人
     */
    private String createBy;
    /**
     * 更新人
     */
    private String updateBy;
    /**
     * 是否被删除 1=已删除 0=未删除
     */
    private Integer isDelete;
 
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
}