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;
|
}
|