潘志宝
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
10 /**
11  * 模型参数信息表
12  *
13  * @author lirm ${email}
14  * @since 1.0.0 2023-06-21
15  */
16 @Data
17 @TableName("t_st_model_param")
18 public class StModelParamEntity implements Serializable {
19
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * id
24      */
25     @TableId(type = IdType.ASSIGN_UUID)
26     private String id;
27     /**
28      * 模型ID
29      */
30     private String modelId;
31     /**
32      * 参数名称
33      */
34     private String paramName;
35     /**
36      * 参数ID
37      */
38     private String paramId;
39     /**
40      * 参数排序
41      */
42     private Integer paramOrder;
43     /**
44      * 输入排序
45      */
46     private Integer paramPortOrder;
47     /**
48      * 数据长度
49      */
50     private Integer dataLength;
51     /**
52      * 参数类型
53      */
54     private String paramType;
55 }