dengzedong
2024-11-12 69bd5efa5e2849a560e604d0aa608d5492113915
提交 | 用户 | 时间
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 {
19     /**
20      * 主键
21      */
22     @TableId(value = "id",type = IdType.INPUT)
23     private String id;
24
25     /**
26      * 预测项ID
27      */
28     private String itemid;
29
30     /**
31      * 数据点ID
32      */
33     @NotBlank(message="数据点ID不能为空")
34     private String pointid;
35
36     /**
37      * 存放表ID
38      */
39     @NotBlank(message="存放表ID不能为空")
40     private String resulttableid;
41
42     /**
69bd5e 43      * 结果
D 44      */
45     @NotBlank(message="结果不能为空")
46     private String resultstr;
47
48     /**
49      * 结果类型
50      */
51     private Integer resultType;
52
53     /**
54      * 结果索引
55      */
56     private Integer resultIndex;
57
58     /**
7fd198 59      * 数据点名称
60      */
61     @NotBlank(message="数据点名称不能为空")
62     private String tagname;
63
64     /**
65      * 排序(默认值1)
66      */
67     private BigDecimal outputorder;
68 }