提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.sche.vo; |
潘 |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
6eeac9
|
4 |
import com.iailab.module.model.api.mcs.dto.StScheduleModelOutDTO; |
7fd198
|
5 |
import io.swagger.v3.oas.annotations.media.Schema; |
潘 |
6 |
import lombok.Data; |
|
7 |
|
|
8 |
import java.io.Serializable; |
bbc1ee
|
9 |
import java.util.List; |
7fd198
|
10 |
|
潘 |
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @date 2021年07月21日 14:08 |
|
14 |
*/ |
bbc1ee
|
15 |
@Schema(description = "模型平台 - 调度模型 Response VO") |
7fd198
|
16 |
@Data |
潘 |
17 |
@ExcelIgnoreUnannotated |
|
18 |
public class StScheduleModelRespVO implements Serializable { |
|
19 |
private static final long serialVersionUID = 1L; |
|
20 |
|
bbc1ee
|
21 |
@Schema(description = "ID", example = "ID") |
7fd198
|
22 |
private String id; |
潘 |
23 |
|
bbc1ee
|
24 |
@Schema(description = "模型编号", example = "模型编号") |
潘 |
25 |
private String modelCode; |
7fd198
|
26 |
|
bbc1ee
|
27 |
@Schema(description = "模型名称", example = "模型名称") |
潘 |
28 |
private String modelName; |
7fd198
|
29 |
|
bbc1ee
|
30 |
@Schema(description = "模型类型", example = "模型类型") |
潘 |
31 |
private String modelType; |
7fd198
|
32 |
|
bbc1ee
|
33 |
@Schema(description = "类名", example = "类名") |
潘 |
34 |
private String className; |
7fd198
|
35 |
|
bbc1ee
|
36 |
@Schema(description = "方法名", example = "方法名") |
潘 |
37 |
private String methodName; |
7fd198
|
38 |
|
bbc1ee
|
39 |
@Schema(description = "参数数量", example = "参数数量") |
潘 |
40 |
private Integer portLength; |
7fd198
|
41 |
|
bbc1ee
|
42 |
@Schema(description = "参数构造", example = "参数构造") |
潘 |
43 |
private String paramStructure; |
7fd198
|
44 |
|
bbc1ee
|
45 |
@Schema(description = "模型路径", example = "模型路径") |
潘 |
46 |
private String modelPath; |
7fd198
|
47 |
|
bbc1ee
|
48 |
@Schema(description = "结果字符串", example = "结果字符串") |
潘 |
49 |
private String resultStrId; |
7fd198
|
50 |
|
bbc1ee
|
51 |
@Schema(description = "调用方式", example = "调用方式") |
潘 |
52 |
private String invocation; |
7fd198
|
53 |
|
bbc1ee
|
54 |
@Schema(description = "状态", example = "状态") |
潘 |
55 |
private Integer status; |
7fd198
|
56 |
|
bbc1ee
|
57 |
@Schema(description = "输入参数列表", example = "输入参数列表") |
潘 |
58 |
private List<StScheduleModelParamRespVO> paramList; |
|
59 |
|
|
60 |
@Schema(description = "设置参数列表", example = "设置参数列表") |
|
61 |
private List<StScheduleModelSettingRespVO> settingList; |
6eeac9
|
62 |
|
D |
63 |
@Schema(description = "下发配置列表", example = "下发配置列表") |
|
64 |
private List<StScheduleModelOutDTO> modelOut; |
7fd198
|
65 |
} |