package com.iailab.module.model.mcs.pre.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import java.math.BigDecimal; import java.util.Date; /** * @author PanZhibao * @Description * @createTime 2024å¹´11月20æ—¥ */ @Schema(description = "模型æœåŠ¡ - 预è¦ä¿¡æ¯åˆ›å»º/修改 Request VO") @Data public class MmPredictAlarmMessageSaveReqVO { @Schema(description = "ID") private String id; @Schema(description = "é…ç½®ID") private String configId; @Schema(description = "消æ¯æ ‡é¢˜") private String title; @Schema(description = "消æ¯å†…容") private String content; @Schema(description = "监控对象") private String alarmObj; @Schema(description = "监控点ä½ID") private String pointId; @Schema(description = "预测项ID") private String itemId; @Schema(description = "输出ID") private String outId; @Schema(description = "当å‰å€¼") private BigDecimal currentValue; @Schema(description = "超出时间") private Date outTime; @Schema(description = "超出值") private BigDecimal outValue; @Schema(description = "预è¦ç±»åž‹") private String alarmType; @Schema(description = "预è¦æ—¶é—´") private Date alarmTime; @Schema(description = "创建时间") private Date createTime; }