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