潘志宝
2024-12-10 a440ec3bfaa1363f5841100b8948d852971a2eb1
提交 | 用户 | 时间
b06c21 1 package com.iailab.module.model.mcs.pre.vo;
2
3 import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
7 import java.math.BigDecimal;
8 import java.util.Date;
9
10 /**
11  * @author PanZhibao
12  * @Description
13  * @createTime 2024年11月20日
14  */
15 @Schema(description = "模型服务 - 预警消息 Response VO")
16 @Data
17 @ExcelIgnoreUnannotated
18 public class MmPredictAlarmMessageRespVO {
19
20     @Schema(description = "ID")
21     private String id;
22
23     @Schema(description = "配置ID")
24     private String configId;
25
26     @Schema(description = "消息标题")
27     private String title;
28
29     @Schema(description = "消息内容")
30     private String content;
31
32     @Schema(description = "监控对象")
33     private String alarmObj;
34
35     @Schema(description = "监控点位ID")
36     private String pointId;
37
38     @Schema(description = "预测项ID")
39     private String itemId;
40
41     @Schema(description = "输出ID")
42     private String outId;
43
44     @Schema(description = "当前值")
45     private BigDecimal currentValue;
46
47     @Schema(description = "超出时间")
48     private Date outTime;
49
50     @Schema(description = "超出值")
51     private BigDecimal outValue;
52
53     @Schema(description = "预警类型")
54     private String alarmType;
55
56     @Schema(description = "预警时间")
57     private Date alarmTime;
58
59     @Schema(description = "创建时间")
60     private Date createTime;
61 }