houzhongjian
2025-06-18 9503c1ebb3fbb68fb8259bea87097d010846e2d5
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
package com.iailab.module.model.api.mcs.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
 
/**
 * @author Jay
 */
@Schema(description = "模型服务 - 调度建议创建/修改 Request VO")
@Data
public class StSuggestSnapshotConfDetSaveReqVO {
 
    @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 dataNo;
 
    @Schema(description = "数据名称")
    private String dataName;
 
    @Schema(description = "左侧长度(min)")
    private Integer leftLength;
 
    @Schema(description = "右侧侧长度(min)")
    private Integer rightLength;
 
    @Schema(description = "上限")
    private BigDecimal limitH;
 
    @Schema(description = "下限")
    private BigDecimal limitL;
 
    @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;
}