潘志宝
2024-09-09 bbc1eeba9c29032add5175f2739782fd204de715
提交 | 用户 | 时间
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;
6 import lombok.Data;
7
8 import java.io.Serializable;
9
10 /**
11  * @author PanZhibao
bbc1ee 12  * @Description
13  * @createTime 2024年09月06日
7fd198 14  */
15 @Data
bbc1ee 16 @TableName("t_st_schedule_model_param")
17 public class StScheduleModelParamEntity implements Serializable {
7fd198 18     private static final long serialVersionUID = 1L;
19
20     /**
21      * 主键
22      */
23     @TableId(value = "id",type = IdType.INPUT)
24     private String id;
25
26     /**
27      * 模型ID
28      */
29     private String modelid;
30
31     /**
32      * 模型参数名称
33      */
34     private String modelparamname;
35
36     /**
37      * 模型参数ID
38      */
39     private String modelparamid;
40
41     /**
42      * 模型参数排序
43      */
44     private Integer modelparamorder;
45
46     /**
47      * 模型参数端口排序
48      */
49     private Integer modelparamportorder;
50
51     /**
52      * 数据长度
53      */
54     private Integer datalength;
55
56     /**
57      * 数据类型
58      */
59     private String modelparamtype;
bbc1ee 60 }