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