提交 | 用户 | 时间
|
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 java.util.Date; |
|
7 |
|
|
8 |
/** |
|
9 |
* @author PanZhibao |
|
10 |
* @Description |
|
11 |
* @createTime 2024年09月06日 |
|
12 |
*/ |
|
13 |
@Schema(description = "模型服务 - 调度方案 Response VO") |
|
14 |
@Data |
|
15 |
public class StScheduleSchemeRespVO { |
|
16 |
|
|
17 |
@Schema(description = "ID", example = "ID") |
|
18 |
private String id; |
|
19 |
|
|
20 |
@Schema(description = "编号", example = "编号") |
|
21 |
private String code; |
|
22 |
|
|
23 |
@Schema(description = "名称", example = "名称") |
|
24 |
private String name; |
|
25 |
|
|
26 |
@Schema(description = "触发方式", example = "事件触发") |
|
27 |
private String triggerMethod; |
|
28 |
|
|
29 |
@Schema(description = "触发条件", example = "mcs.predict.finished") |
|
30 |
private String triggerCondition; |
|
31 |
|
|
32 |
@Schema(description = "调整对象", example = "电厂") |
|
33 |
private String scheduleObj; |
|
34 |
|
|
35 |
@Schema(description = "调整类型", example = "调整类型") |
|
36 |
private String scheduleType; |
|
37 |
|
|
38 |
@Schema(description = "调整策略", example = "调整策略") |
|
39 |
private String scheduleStrategy; |
|
40 |
|
|
41 |
@Schema(description = "调度模型", example = "调度模型") |
|
42 |
private String modelId; |
|
43 |
|
|
44 |
@Schema(description = "调度时间", example = "2024-09-01 00:00:00") |
|
45 |
private Date scheduleTime; |
|
46 |
|
|
47 |
@Schema(description = "备注", example = "备注") |
|
48 |
private String remark; |
|
49 |
|
|
50 |
@Schema(description = "状态(0正常 1停用)", example = "0") |
|
51 |
private Integer status; |
|
52 |
|
51c1c2
|
53 |
@Schema(description = "项目ID") |
潘 |
54 |
private String mpkprojectid; |
bbc1ee
|
55 |
} |