提交 | 用户 | 时间
|
97d38f
|
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 java.io.Serializable; |
|
9 |
import java.math.BigDecimal; |
|
10 |
import java.util.Date; |
|
11 |
|
|
12 |
/** |
|
13 |
* @author PanZhibao |
|
14 |
* @Description |
|
15 |
* @createTime 2024年11月19日 |
|
16 |
*/ |
|
17 |
@Data |
|
18 |
@TableName("t_mm_item_accuracy_rate") |
|
19 |
public class MmItemAccuracyRateEntity 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 |
* 预测项ID |
|
30 |
*/ |
|
31 |
private String itemId; |
|
32 |
|
|
33 |
/** |
|
34 |
* 输出ID |
|
35 |
*/ |
|
36 |
private String outId; |
|
37 |
|
|
38 |
/** |
|
39 |
* 取样长度 |
|
40 |
*/ |
|
41 |
private Integer sampleLength; |
|
42 |
|
|
43 |
/** |
|
44 |
* 值类型 |
|
45 |
*/ |
|
46 |
private Integer valueType; |
|
47 |
|
|
48 |
/** |
|
49 |
* 开始统计时间 |
|
50 |
*/ |
|
51 |
private Date beginTime; |
|
52 |
|
|
53 |
/** |
|
54 |
* 精准误差 |
|
55 |
*/ |
|
56 |
private BigDecimal inDeviation; |
|
57 |
|
|
58 |
/** |
|
59 |
* 精准度 |
|
60 |
*/ |
|
61 |
private BigDecimal inAccuracyRate; |
|
62 |
|
|
63 |
/** |
|
64 |
* 不可信误差 |
|
65 |
*/ |
|
66 |
private BigDecimal outDeviation; |
|
67 |
|
|
68 |
/** |
|
69 |
* 不可信率 |
|
70 |
*/ |
|
71 |
private BigDecimal outAccuracyRate; |
|
72 |
|
|
73 |
/** |
|
74 |
* 是否启用 |
|
75 |
*/ |
|
76 |
private Integer isEnable; |
|
77 |
|
|
78 |
/** |
|
79 |
* 创建时间 |
|
80 |
*/ |
|
81 |
private Date createTime; |
|
82 |
|
|
83 |
/** |
|
84 |
* 更新时间 |
|
85 |
*/ |
|
86 |
private Date updateTime; |
|
87 |
} |