package com.supersavedriving.driver.modular.system.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 java.util.Date;
|
|
/**
|
* 用户系统公告关系数据
|
* @author pzb
|
* @Date 2023/2/13 11:49
|
*/
|
@Data
|
@TableName("t_system_bulletin_user")
|
public class SystemBulletinUser {
|
/**
|
* 主键
|
*/
|
@TableId(value = "id", type = IdType.AUTO)
|
@TableField("id")
|
private Long id;
|
/**
|
* 系统公告id
|
*/
|
@TableField("systemBulletinId")
|
private Integer systemBulletinId;
|
/**
|
* 用户类型(1=用户,2=司机)
|
*/
|
@TableField("userType")
|
private Integer userType;
|
/**
|
* 用户id
|
*/
|
@TableField("userId")
|
private Integer userId;
|
/**
|
* 阅读(0=否,1=是)
|
*/
|
@TableField("isRead")
|
private Integer isRead;
|
/**
|
* 状态(1=正常,2=冻结,3=删除)
|
*/
|
@TableField("status")
|
private Integer status;
|
/**
|
* 添加时间
|
*/
|
@TableField("createTime")
|
private Date createTime;
|
}
|