package com.iailab.module.shasteel.job.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@Data
|
@TableName("t_msg_info")
|
public class MessageInfoEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.ASSIGN_UUID)
|
private String id;
|
/**
|
* 消息标题
|
*/
|
private String title;
|
/**
|
* 消息内容
|
*/
|
private String content;
|
/**
|
* 发送时间
|
*/
|
private Date sendTime;
|
/**
|
* 读取状态
|
*/
|
private String readStatus;
|
/**
|
* 业务ID
|
*/
|
private String businessKey;
|
/**
|
* 消息来源
|
*/
|
private String messageSource;
|
/**
|
* 创建时间
|
*/
|
private Date createDate;
|
/**
|
* 修改人
|
*/
|
private String updater;
|
/**
|
* 修改时间
|
*/
|
private Date updateDate;
|
|
}
|