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