潘志宝
2024-11-11 4eb113d1149e61ae193ebd60296f2984c56c2f46
提交 | 用户 | 时间
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 import java.util.Date;
12
13 /**
14  * @author PanZhibao
15  * @date 2021年04月25日 15:05
16  */
17 @Data
137356 18 @TableName("t_mm_predict_item")
7fd198 19 public class MmPredictItemEntity implements Serializable {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * 主键
24      */
25     @TableId(value = "id",type = IdType.INPUT)
26     private String id;
27
28     /**
29      * 编号
30      */
31     private String itemno;
32
33     /**
34      * 预测项名
35      */
36     @NotBlank(message="预测项名不能为空")
37     private String itemname;
38
39     /**
40      * 计算类型
41      */
42     private String caltypeid;
43
44     /**
45      * 类型
46      */
47     @NotBlank(message="类型不能为空")
48     private String itemtypeid;
49
50     /**
51      * 预测长度
52      */
137356 53     private Integer predictlength;
7fd198 54
55     /**
56      * 粒度
57      */
137356 58     private Integer granularity;
7fd198 59
60     /**
61      * 是否启用
62      */
137356 63     private Integer status;
7fd198 64
65     /**
4eb113 66      * 是否融合
7fd198 67      */
137356 68     private Integer isfuse;
7fd198 69
70     /**
71      * predictphase
72      */
137356 73     private Integer predictphase;
7fd198 74
75     /**
76      * 是否检查
77      */
137356 78     private Integer workchecked;
7fd198 79
80     /**
4eb113 81      * 单位转换
7fd198 82      */
137356 83     private Integer unittransfactor;
7fd198 84
85     /**
86      * 创建时间
87      */
88     private Date createTime;
89
90     /**
91      * 更新时间
92      */
93     private Date updateTime;
94
95     /**
96      * 保留的预测点位 (T+2 则n=2, T+30则n=30, T+n则表示从最后点位开始,n=预测长度;n由系统配置得出)
97      */
98     private String saveindex;
99 }