工业互联网平台2.0版本后端代码
houzhongjian
2025-05-29 24996ea75ec4ca3b7d154387bfe37ec9dd387255
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
package com.iailab.module.model.mcs.sche.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
 
/**
 * @author Jay
 */
@Schema(description = "模型服务 - 调度建议创建/修改 Request VO")
@Data
public class StSuggestSnapshotConfDetRespVO {
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "模型ID")
    private String confId;
 
    @Schema(description = "数据类型(DATAPOINT,IND,PLAN,PREDICTITEM)")
    private String dataType;
 
    @Schema(description = "数据名称")
    private String dataName;
 
    @Schema(description = "数据编号")
    private String dataNo;
 
    @Schema(description = "左侧长度(min)")
    private Integer leftLength;
 
    @Schema(description = "右侧侧长度(min)")
    private Integer rightLength;
 
    @Schema(description = "排序")
    private Integer sort;
 
    @Schema(description = "拓展字段1")
    private String ext1;
 
    @Schema(description = "拓展字段2")
    private String ext2;
 
    @Schema(description = "拓展字段3")
    private String ext3;
 
    @Schema(description = "拓展字段4")
    private String ext4;
 
    @Schema(description = "拓展字段5")
    private String ext5;
}