package com.stylefeng.guns.modular.system.model;
|
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.annotations.TableId;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import com.baomidou.mybatisplus.enums.IdType;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author administrator
|
* @since 2023-09-01
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("t_email")
|
public class TEmail extends Model<TEmail> {
|
|
private static final long serialVersionUID=1L;
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 用户id
|
*/
|
@TableField("userId")
|
private Integer userId;
|
|
/**
|
* 1用户2司机
|
*/
|
private Integer type;
|
|
/**
|
* html 链接
|
*/
|
private String link;
|
@TableField("orderId")
|
private Integer orderId;
|
@TableField("createTime")
|
private Date createTime;
|
private String week;
|
@TableField("amOrPm")
|
private String amOrPm;
|
|
private String name;
|
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
}
|