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;
|
}
|
|
}
|