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