| | |
| | | package com.iailab.module.model.mcs.sche.vo; |
| | | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author PanZhibao |
| | | * @Description |
| | | * @createTime 2025年02月23日 |
| | | */ |
| | | @Schema(description = "模型服务 - 模拟调整配置 Response VO") |
| | | @Data |
| | | public class StAdjustConfigDetRespVO { |
| | | @Schema(description = "ID", example = "ID") |
| | | private String id; |
| | | |
| | | private String configId; |
| | | |
| | | private String item_type_id; |
| | | |
| | | private String predict_item_id; |
| | | |
| | | private String out_key; |
| | | |
| | | private String out_name; |
| | | |
| | | private Integer model_param_order; |
| | | |
| | | private Integer model_param_port_order; |
| | | |
| | | private Integer sort; |
| | | } |