潘志宝
2024-10-31 14cb329f0fec66711e3ddeba7e80db289c7fe8fc
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.data.point.entity;
H 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  * 测点表
14  *
15  * @author lirm ${email}
16  * @since 1.0.0 2023-06-21
17  */
18 @Data
19 @TableName("t_da_point")
20 public class DaPointEntity implements Serializable {
21     private static final long serialVersionUID = 1L;
22
23     /**
24      * id
25      */
26     @TableId(type = IdType.ASSIGN_UUID)
27     private String id;
28
29     /**
30      * 测点编码
31      */
32     private String pointNo;
33
34     /**
35      * 测点名称
36      */
37     private String pointName;
38
39     /**
40      * 测点类型
41      */
42     private String pointType;
43
44     /**
45      * 数据类型
46      */
47     private String dataType;
48
49     /**
50      * 值类型
51      */
52     private String valueType;
53
54     /**
55      * 存储类型
56      */
57     private String storeType;
58
59     /**
60      * 测量单位
61      */
62     private String unit;
63
64     /**
65      * 单位转换
66      */
67     private BigDecimal unittransfactor;
68
69     /**
70      * 默认值
71      */
72     private BigDecimal defaultValue;
73
74     /**
75      * 最大值
76      */
77     private BigDecimal maxValue;
78
79     /**
80      * 最小值
81      */
82     private BigDecimal minValue;
83
84     /**
85      * 采集频率
86      */
87     private String minfreqid;
88
89     /**
90      * 备注
91      */
92     private String remark;
93     /**
94      * 是否启用
95      */
96     private Integer isEnable;
97     /**
98      * 创建人
99      */
100     private Long creator;
101     /**
102      * 创建时间
103      */
104     private Date createTime;
105     /**
106      * 修改人
107      */
108     private Long updater;
109     /**
110      * 修改时间
111      */
112     private Date updateTime;
113 }