package com.iailab.module.model.mcs.sche.vo;
|
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年09月06日
|
*/
|
@Schema(description = "模型服务 - 模型输入参数 Response VO")
|
@Data
|
@ExcelIgnoreUnannotated
|
public class StScheduleModelParamRespVO {
|
|
@Schema(description = "ID")
|
private String id;
|
|
@Schema(description = "模型ID")
|
private String modelid;
|
|
@Schema(description = "模型参数名称")
|
private String modelparamname;
|
|
@Schema(description = "模型参数ID")
|
private String modelparamid;
|
|
@Schema(description = "模型参数排序")
|
private Integer modelparamorder;
|
|
@Schema(description = "模型参数端口排序")
|
private Integer modelparamportorder;
|
|
@Schema(description = "数据长度")
|
private Integer datalength;
|
|
@Schema(description = "数据类型")
|
private String modelparamtype;
|
}
|