潘志宝
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * @author PanZhibao
 * @date 2021年07月21日 14:08
 */
@Schema(description = "模型平台 - 调度模型 Response VO")
@Data
@ExcelIgnoreUnannotated
public class StScheduleModelRespVO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "ID", example = "ID")
    private String id;
 
    @Schema(description = "模型编号", example = "模型编号")
    private String modelCode;
 
    @Schema(description = "模型名称", example = "模型名称")
    private String modelName;
 
    @Schema(description = "模型类型", example = "模型类型")
    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 = "调用方式", example = "调用方式")
    private String invocation;
 
    @Schema(description = "状态", example = "状态")
    private Integer status;
 
    @Schema(description = "输入参数列表", example = "输入参数列表")
    private List<StScheduleModelParamRespVO> paramList;
 
    @Schema(description = "设置参数列表", example = "设置参数列表")
    private List<StScheduleModelSettingRespVO> settingList;
}