pre
潘志宝
2024-09-25 9057425fa1472e48d79f7f8608ea80267e224135
提交 | 用户 | 时间
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     /**
43      * 数据点名称
44      */
45     @NotBlank(message="数据点名称不能为空")
46     private String tagname;
47
48     /**
49      * 排序(默认值1)
50      */
51     private BigDecimal outputorder;
52 }