潘志宝
2025-02-24 87d7ae7fe628b6e8ddf7763491db8cc990892fda
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
package com.iailab.module.model.api.mcs.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2025年02月23日
 */
@Schema(description = "RPC 模型 - 模拟调整配置详情 DTO")
@Data
public class StAdjustConfigDetDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "配置ID")
    private String configId;
 
    @Schema(description = "预测项类型")
    private String itemTypeId;
 
    @Schema(description = "预测项ID")
    private String predictItemId;
 
    @Schema(description = "输出KEY")
    private String outKey;
 
    @Schema(description = "输出名称")
    private String outName;
 
    @Schema(description = "参数排序")
    private Integer modelParamOrder;
 
    @Schema(description = "输入排序")
    private Integer modelParamPortOrder;
 
    @Schema(description = "执行顺序")
    private Integer sort;
}