潘志宝
2024-11-28 231897591c909b164defebfdb5936387ec2807d0
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
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.iailab.module.model.api.mcs.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年11月20日
 */
@Schema(description = "模型服务 - 预警配置 Response VO")
@Data
public class AlarmConfigRespDTO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "消息标题")
    private String title;
 
    @Schema(description = "监控对象")
    private String alarmObj;
 
    @Schema(description = "预测项ID")
    private String itemId;
 
    private String itemName;
 
    @Schema(description = "输出ID")
    private String outId;
    
    private String outName;
 
    @Schema(description = "比较长度")
    private Integer compLength;
 
    @Schema(description = "上限")
    private BigDecimal upperLimit;
 
    @Schema(description = "下限")
    private BigDecimal lowerLimit;
 
    @Schema(description = "单位")
    private String unit;
 
    @Schema(description = "转换系数")
    private BigDecimal coefficient;
 
    @Schema(description = "调度方案")
    private String scheduleId;
 
    @Schema(description = "是否启用(0禁用 1启用)")
    private Integer isEnable;
 
    @Schema(description = "创建者")
    private String creator;
 
    @Schema(description = "创建时间")
    private Date createTime;
 
    @Schema(description = "更新者")
    private String updater;
 
    @Schema(description = "更新时间")
    private Date updateTime;
}