潘志宝
2024-09-09 bbc1eeba9c29032add5175f2739782fd204de715
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
}