package com.iailab.module.model.mcs.sche.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; import javax.validation.constraints.NotNull; import java.util.List; /** * @author PanZhibao * @Description * @createTime 2024年09月06日 */ @Schema(description = "模型服务 - 调度模型创建/修改 Request VO") @Data public class StScheduleModelSaveReqVO { @Schema(description = "ID") private String id; @Schema(description = "模型编号", requiredMode = Schema.RequiredMode.REQUIRED) @NotNull(message = "编号不能为空") private String modelCode; @Schema(description = "模型名称", requiredMode = Schema.RequiredMode.REQUIRED) @NotNull(message = "名称不能为空") private String modelName; @Schema(description = "模型类型") private String modelType; @Schema(description = "类名", example = "类名") private String className; @Schema(description = "方法名", example = "方法名") private String methodName; @Schema(description = "输入数量", example = "输入数量") private Integer portLength; @Schema(description = "参数构造", example = "参数构造") private String paramStructure; @Schema(description = "模型路径", example = "模型路径") private String modelPath; @Schema(description = "结果字符串", example = "结果字符串") private String resultStrId; @Schema(description = "调用方式", requiredMode = Schema.RequiredMode.REQUIRED) private String invocation; @Schema(description = "状态", example = "状态") private Integer status; @Schema(description = "输入参数", example = "输入参数") private List paramList; @Schema(description = "设置参数", example = "设置参数") private List settingList; }