潘志宝
2024-12-03 51c1c2c9fa28fb1765dd6e81c70b78566792aebe
提交 | 用户 | 时间
bbc1ee 1 package com.iailab.module.model.mcs.sche.vo;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 /**
7  * @author PanZhibao
8  * @Description
9  * @createTime 2024年09月06日
10  */
11 @Schema(description = "模型服务 - 模型输入参数创建/修改 Request VO")
12 @Data
13 public class StScheduleModelParamSaveReqVO {
14
15     @Schema(description = "ID")
16     private String id;
17
18     @Schema(description = "模型ID")
19     private String modelid;
20
21     @Schema(description = "模型参数名称")
22     private String modelparamname;
23
24     @Schema(description = "模型参数ID")
25     private String modelparamid;
26
27     @Schema(description = "模型参数排序")
28     private Integer modelparamorder;
29
30     @Schema(description = "模型参数端口排序")
31     private Integer modelparamportorder;
32
33     @Schema(description = "数据长度")
34     private Integer datalength;
35
36     @Schema(description = "数据类型")
37     private String modelparamtype;
38 }