mpk
潘志宝
2024-09-20 b425df38b434f1eaf4762690905cd7affcf4c7b6
提交 | 用户 | 时间
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 }