houzhongjian
9 天以前 3058865fa4dfa634a92b4ebd826d8b1264dc90a3
提交 | 用户 | 时间
87d7ae 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
12  * @Description
13  * @createTime 2025年02月20日
14  */
15 @Data
16 @TableName("t_st_adjust_config_det")
17 public class StAdjustConfigDetEntity implements Serializable {
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 configId;
30
31     /**
32      * 预测项类型
33      */
34     private String itemTypeId;
35
36     /**
37      * 预测项ID
38      */
39     private String predictItemId;
40
41     /**
42      * 输出KEY
43      */
44     private String outKey;
45
46     /**
47      * 输出名称
48      */
49     private String outName;
50
51     /**
52      * 参数排序
53      */
54     private Integer modelParamOrder;
55
56     /**
57      * 输入排序
58      */
59     private Integer modelParamPortOrder;
60
61     /**
62      * 执行顺序
63      */
64     private Integer sort;
65 }