houzhongjian
8 天以前 3058865fa4dfa634a92b4ebd826d8b1264dc90a3
提交 | 用户 | 时间
87d7ae 1 package com.iailab.module.model.mcs.sche.vo;
2
047676 3 import io.swagger.v3.oas.annotations.media.Schema;
L 4 import lombok.Data;
5
87d7ae 6 /**
7  * @author PanZhibao
8  * @Description
9  * @createTime 2025年02月23日
10  */
047676 11 @Schema(description = "模型服务 - 模拟调整配置 Response VO")
L 12 @Data
87d7ae 13 public class StAdjustConfigDetRespVO {
047676 14     @Schema(description = "ID", example = "ID")
L 15     private String id;
16
17     private String configId;
18
19     private String item_type_id;
20
21     private String predict_item_id;
22
23     private String out_key;
24
25     private String out_name;
26
27     private Integer model_param_order;
28
29     private Integer model_param_port_order;
30
31     private Integer sort;
87d7ae 32 }