潘志宝
2024-12-10 a440ec3bfaa1363f5841100b8948d852971a2eb1
提交 | 用户 | 时间
7fd198 1 package com.iailab.module.model.mcs.pre.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 javax.validation.constraints.NotBlank;
9 import java.io.Serializable;
10 import java.math.BigDecimal;
11
12 /**
13  * @author PanZhibao
14  * @date 2021年04月25日 16:23
15  */
16 @Data
17 @TableName("T_MM_ITEM_OUTPUT")
18 public class MmItemOutputEntity implements Serializable {
97d38f 19     private static final long serialVersionUID = 1L;
20
7fd198 21     /**
22      * 主键
23      */
24     @TableId(value = "id",type = IdType.INPUT)
25     private String id;
26
27     /**
28      * 预测项ID
29      */
30     private String itemid;
31
32     /**
33      * 数据点ID
34      */
35     @NotBlank(message="数据点ID不能为空")
36     private String pointid;
37
38     /**
39      * 存放表ID
40      */
41     @NotBlank(message="存放表ID不能为空")
42     private String resulttableid;
43
44     /**
69bd5e 45      * 结果
D 46      */
47     @NotBlank(message="结果不能为空")
48     private String resultstr;
49
50     /**
51      * 结果类型
52      */
53     private Integer resultType;
54
55     /**
56      * 结果索引
57      */
58     private Integer resultIndex;
59
60     /**
7fd198 61      * 数据点名称
62      */
63     @NotBlank(message="数据点名称不能为空")
64     private String tagname;
65
66     /**
67      * 排序(默认值1)
68      */
69     private BigDecimal outputorder;
b368e6 70
71     /**
72      * 结果名称
73      */
74     private String resultName;
7fd198 75 }