liriming
2024-11-26 5b952f77058a9da5af5e143a6c2c7ba195aa736d
提交 | 用户 | 时间
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 MmPredictAlarmConfigSaveReqVO {
17
18     @Schema(description = "ID")
19     private String id;
20
21     @Schema(description = "消息标题")
22     private String title;
23
24     @Schema(description = "监控对象")
25     private String alarmObj;
26
27     @Schema(description = "预测项ID")
28     private String itemId;
29
30     @Schema(description = "输出ID")
31     private String outId;
32
33     @Schema(description = "比较长度")
34     private Integer compLength;
35
36     @Schema(description = "上限")
37     private BigDecimal upperLimit;
38
39     @Schema(description = "下限")
40     private BigDecimal lowerLimit;
41
42     @Schema(description = "单位")
43     private String unit;
44
45     @Schema(description = "转换系数")
46     private BigDecimal coefficient;
47
48     @Schema(description = "调度方案")
49     private String scheduleId;
50
51     @Schema(description = "是否启用(0禁用 1启用)")
52     private Integer isEnable;
53
54     @Schema(description = "创建者")
55     private String creator;
56
57     @Schema(description = "创建时间")
58     private Date createTime;
59
60     @Schema(description = "更新者")
61     private String updater;
62
63     @Schema(description = "更新时间")
64     private Date updateTime;
65 }