提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.sche.entity; |
潘 |
2 |
|
|
3 |
import com.baomidou.mybatisplus.annotation.IdType; |
|
4 |
import com.baomidou.mybatisplus.annotation.TableId; |
|
5 |
import com.baomidou.mybatisplus.annotation.TableName; |
bbc1ee
|
6 |
import com.iailab.framework.mybatis.core.dataobject.BaseDO; |
7fd198
|
7 |
import lombok.Data; |
潘 |
8 |
|
|
9 |
import javax.validation.constraints.NotBlank; |
|
10 |
import java.io.Serializable; |
|
11 |
|
|
12 |
/** |
|
13 |
* @author PanZhibao |
|
14 |
* @date 2021年07月19日 15:03 |
|
15 |
*/ |
|
16 |
@Data |
b425df
|
17 |
@TableName("t_st_schedule_model") |
bbc1ee
|
18 |
public class StScheduleModelEntity extends BaseDO { |
7fd198
|
19 |
|
潘 |
20 |
private static final long serialVersionUID = 1L; |
|
21 |
|
|
22 |
/** |
|
23 |
* 主键 |
|
24 |
*/ |
|
25 |
@TableId(value = "id",type = IdType.INPUT) |
|
26 |
private String id; |
|
27 |
|
bbc1ee
|
28 |
/** |
潘 |
29 |
* 模型编号 |
|
30 |
*/ |
|
31 |
private String modelCode; |
7fd198
|
32 |
|
潘 |
33 |
/** |
|
34 |
* 模型名称 |
|
35 |
*/ |
bbc1ee
|
36 |
private String modelName; |
7fd198
|
37 |
|
潘 |
38 |
/** |
bbc1ee
|
39 |
* 模型类型 |
7fd198
|
40 |
*/ |
bbc1ee
|
41 |
private String modelType; |
7fd198
|
42 |
|
潘 |
43 |
/** |
|
44 |
* 类名 |
|
45 |
*/ |
bbc1ee
|
46 |
private String className; |
7fd198
|
47 |
|
潘 |
48 |
/** |
|
49 |
* 方法名 |
|
50 |
*/ |
bbc1ee
|
51 |
private String methodName; |
潘 |
52 |
|
|
53 |
/** |
|
54 |
* 输入数量 |
|
55 |
*/ |
|
56 |
private Integer portLength; |
|
57 |
|
|
58 |
/** |
|
59 |
* 参数构造 |
|
60 |
*/ |
|
61 |
private String paramStructure; |
7fd198
|
62 |
|
潘 |
63 |
/** |
|
64 |
* 模型路径 |
|
65 |
*/ |
bbc1ee
|
66 |
private String modelPath; |
7fd198
|
67 |
|
潘 |
68 |
/** |
bbc1ee
|
69 |
* 结果字符串 |
7fd198
|
70 |
*/ |
bbc1ee
|
71 |
private String resultStrId; |
7fd198
|
72 |
|
潘 |
73 |
/** |
bbc1ee
|
74 |
* 调用方式 |
7fd198
|
75 |
*/ |
bbc1ee
|
76 |
private String invocation; |
潘 |
77 |
|
|
78 |
/** |
|
79 |
* 状态 |
|
80 |
*/ |
|
81 |
private Integer status; |
7fd198
|
82 |
} |