潘志宝
2024-08-20 92d87eda945d68346475e6766673a3cdccf3d41c
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.mcs.entity;
H 2
3 import com.baomidou.mybatisplus.annotation.IdType;
4 import com.baomidou.mybatisplus.annotation.TableId;
5 import com.baomidou.mybatisplus.annotation.TableName;
6 import lombok.Data;
7
8 import java.io.Serializable;
9 import java.util.Date;
10
11 /**
12  * 模型信息表
13  *
14  * @author lirm ${email}
15  * @since 1.0.0 2023-06-21
16  */
17 @Data
18 @TableName("t_st_model")
19 public class StModelEntity implements Serializable {
20
21     private static final long serialVersionUID = 1L;
22
23     /**
24      * id
25      */
26     @TableId(type = IdType.ASSIGN_UUID)
27     private String id;
28
29     /**
30      * 模型编码
31      */
32     private String modelCode;
33
34     /**
35      * 模型名称
36      */
37     private String modelName;
38
39     /**
40      * 模型父级
41      */
42     private String modelParent;
43
44     /**
45      * 模型类型
46      */
47     private String modelType;
48
49     /**
50      * 模型路径
51      */
52     private String modelPath;
53
54     /**
55      * 类名
56      */
57     private String className;
58
59     /**
60      * 方法名
61      */
62     private String methodName;
63
64     /**
65      * 参数结构
66      */
67     private String paramsStructure;
68
69     /**
70      * 备注
71      */
72     private String remark;
73
74     /**
75      * 回路
76      */
77     private String modelLoop;
78
79     /**
80      * 执行顺序
81      */
82     private Integer runSort;
83
84     /**
85      * 运行时间
86      */
87     private Date runTime;
88
89     /**
90      * 是否启用
91      */
92     private Integer isEnable;
93
94     /**
95      * 创建人
96      */
97     private Long creator;
98
99     /**
100      * 创建时间
101      */
102     private Date createDate;
103
104     /**
105      * 修改人
106      */
107     private Long updater;
108
109     /**
110      * 修改时间
111      */
112     private Date updateDate;
113
114     /**
115      * 模型版本
116      */
117     private String modelVersion;
118 }