潘志宝
2024-11-27 05576523a8626d34aaa1a47f1dfdcad7710482b4
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
73
74
75
76
77
78
79
80
81
82
83
package com.iailab.module.model.mcs.sche.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月27日
 */
@Schema(description = "模型服务 - 调度建议 Response VO")
@Data
public class StScheduleSuggestRespVO {
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "标题")
    private String title;
 
    @Schema(description = "内容")
    private String content;
 
    @Schema(description = "排序")
    private Integer sort;
 
    @Schema(description = "方案ID")
    private String schemeId;
 
    @Schema(description = "预警ID")
    private String alarmId;
 
    @Schema(description = "预测项ID")
    private String itemId;
 
    @Schema(description = "模型ID")
    private String modelId;
 
    @Schema(description = "调整对象")
    private String scheduleObj;
 
    @Schema(description = "调整类型")
    private String scheduleType;
 
    @Schema(description = "调整策略")
    private String scheduleStrategy;
 
    @Schema(description = "调整方式")
    private String adjustMode;
 
    @Schema(description = "调整值")
    private BigDecimal adjustValue;
 
    @Schema(description = "调整单位")
    private String adjustUnit;
 
    @Schema(description = "持续时长")
    private BigDecimal adjustTimes;
 
    @Schema(description = "调整开始时间")
    private Date adjustStart;
 
    @Schema(description = "调整结束时间")
    private Date adjustEnd;
 
    @Schema(description = "调度时间")
    private Date scheduleTime;
 
    @Schema(description = "状态(0未处理 1已采纳 2已忽略)")
    private Integer status;
 
    @Schema(description = "处理人")
    private String handler;
 
    @Schema(description = "处理时间")
    private Date handleTime;
 
    @Schema(description = "创建时间")
    private Date createTime;
}