Jay
2025-02-24 c3c7a6918f0e2dfe597c339117e4185b641be95f
提交 | 用户 | 时间
87d7ae 1 package com.iailab.module.model.api.mcs.dto;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import java.io.Serializable;
7
8 /**
9  * @author PanZhibao
10  * @Description
11  * @createTime 2025年02月23日
12  */
13 @Schema(description = "RPC 模型 - 模拟调整配置详情 DTO")
14 @Data
15 public class StAdjustConfigDetDTO implements Serializable {
16     private static final long serialVersionUID = 1L;
17
18     @Schema(description = "ID")
19     private String id;
20
21     @Schema(description = "配置ID")
22     private String configId;
23
24     @Schema(description = "预测项类型")
25     private String itemTypeId;
26
27     @Schema(description = "预测项ID")
28     private String predictItemId;
29
30     @Schema(description = "输出KEY")
31     private String outKey;
32
33     @Schema(description = "输出名称")
34     private String outName;
35
36     @Schema(description = "参数排序")
37     private Integer modelParamOrder;
38
39     @Schema(description = "输入排序")
40     private Integer modelParamPortOrder;
41
42     @Schema(description = "执行顺序")
43     private Integer sort;
44 }