package com.iailab.module.model.mcs.pre.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.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年11月19日
|
*/
|
@Data
|
@TableName("t_mm_predict_alarm_message")
|
public class MmPredictAlarmMessageEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id",type = IdType.INPUT)
|
private String id;
|
|
/**
|
* 配置ID
|
*/
|
private String configId;
|
|
/**
|
* 消息标题
|
*/
|
private String title;
|
|
/**
|
* 消息内容
|
*/
|
private String content;
|
|
/**
|
* 监控对象
|
*/
|
private String alarmObj;
|
|
/**
|
* 监控点位ID
|
*/
|
private String pointId;
|
|
/**
|
* 预测项ID
|
*/
|
private String itemId;
|
|
/**
|
* 输出ID
|
*/
|
private String outId;
|
|
/**
|
* 当前值
|
*/
|
private BigDecimal currentValue;
|
|
/**
|
* 超出时间
|
*/
|
private Date outTime;
|
|
/**
|
* 超出值
|
*/
|
private BigDecimal outValue;
|
|
/**
|
* 预警类型
|
*/
|
private String alarmType;
|
|
/**
|
* 预警时间
|
*/
|
private Date alarmTime;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
}
|