You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-cpt-java/src/main/java/com/glxp/api/entity/system/SysRemindMsgEntity.java

87 lines
1.9 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.glxp.api.entity.system;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.util.Date;
import lombok.Data;
@Data
@TableName(value = "sys_remind_msg")
public class SysRemindMsgEntity {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
* 消息key
*/
@TableField(value = "`key`")
private String key;
/**
* 消息内容
*/
@TableField(value = "message")
private String message;
/**
* 提醒类型1.库存不足提醒2.库存产品过期3.库存近效期;
*/
@TableField(value = "`type`")
private Integer type;
@TableField(value = "`level`")
private Integer level;
/**
* 创建时间
*/
@TableField(value = "createTime")
private Date createTime;
/**
* 更新时间
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
* 查看确认人
*/
@TableField(value = "updateUser")
private String updateUser;
/**
* 备注
*/
@TableField(value = "remark")
private String remark;
/**
* 1.未查看2.已查看3:已确认;
*/
@TableField(value = "`status`")
private Integer status;
public static final String COL_ID = "id";
public static final String COL_KEY = "key";
public static final String COL_MESSAGE = "message";
public static final String COL_TYPE = "type";
public static final String COL_CREATETIME = "createTime";
public static final String COL_UPDATETIME = "updateTime";
public static final String COL_UPDATEUSER = "updateUser";
public static final String COL_REMARK = "remark";
public static final String COL_STATUS = "status";
}