liriming
2024-11-26 5b952f77058a9da5af5e143a6c2c7ba195aa736d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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;
}