潘志宝
2024-12-23 d6464955dc20cb527f7be02ac8631c1effb1768a
提交 | 用户 | 时间
2228b6 1 package com.iailab.module.data.point.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.util.Date;
10
11 /**
12  * @author PanZhibao
13  * @Description
14  * @createTime 2024年12月13日
15  */
16 @Data
17 @TableName("t_da_point_collect_status")
18 public class DaPointCollectStatusEntity implements Serializable {
19     private static final long serialVersionUID = 1L;
20
21     /**
22      * id
23      */
24     @TableId(type = IdType.ASSIGN_UUID)
25     private String id;
26
27     /**
6b1383 28      * 测点编码
2228b6 29      */
6b1383 30     private String pointNo;
2228b6 31
32     /**
33      * 采集值
34      */
35     private String collectValue;
36
37     /**
38      * 采集质量
39      */
40     private String collectQuality;
41
42     /**
43      * 采集时间
44      */
45     private Date collectTime;
46 }