houzhongjian
2024-12-04 a82313d17b2b5d1c02e880122efc1b701c401dcf
提交 | 用户 | 时间
bbc1ee 1 package com.iailab.module.model.mcs.sche.vo;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import javax.validation.constraints.NotNull;
7 import java.util.Date;
8
9 /**
10  * @author PanZhibao
11  * @Description
12  * @createTime 2024年09月06日
13  */
14 @Schema(description = "模型服务 - 调度方案创建/修改 Request VO")
15 @Data
16 public class StScheduleSchemeSaveReqVO {
17
18     @Schema(description = "ID")
51c1c2 19     private String id;
bbc1ee 20
21     @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED)
22     @NotNull(message = "编号不能为空")
056470 23     private String code;
bbc1ee 24
25     @Schema(description = "名称", requiredMode = Schema.RequiredMode.REQUIRED)
26     @NotNull(message = "名称不能为空")
056470 27     private String name;
bbc1ee 28
29     @Schema(description = "触发方式")
30     private String triggerMethod;
31
32     @Schema(description = "触发条件")
33     private String triggerCondition;
34
35     @Schema(description = "调整对象")
36     private String scheduleObj;
37
38     @Schema(description = "调整类型")
39     private String scheduleType;
40
41     @Schema(description = "调整策略")
42     private String scheduleStrategy;
43
44     @Schema(description = "调度模型")
45     private String modelId;
46
47     @Schema(description = "调度时间")
48     private Date scheduleTime;
49
50     @Schema(description = " 状态(0正常 1停用)")
51     private Integer status;
52
53     @Schema(description = "备注")
54     private String remark;
51c1c2 55
56     @Schema(description = "项目ID")
57     private String mpkprojectid;
bbc1ee 58 }