dengzedong
2024-10-14 3e18d4bfbf2c657b08b21512c2d884cc9d59df7b
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.data.channel.kio.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 io.swagger.v3.oas.annotations.media.Schema;
7 import lombok.Data;
8
9 import java.io.Serializable;
10 import java.util.Date;
11
12 /**
13  * @author PanZhibao
14  * @Description
15  * @createTime 2024年06月05日
16  */
17 @Data
18 @TableName("t_channel_kio_tag")
19 public class ChannelKioTagEntity implements Serializable {
20     private static final long serialVersionUID = 1L;
21
22     /**
23      * 主键
24      */
25     @Schema(description = "主键")
26     @TableId(value = "id",type = IdType.INPUT)
27     private String id;
28
29     /**
30      * 名称
31      */
32     private String tagName;
33
34
35     /**
36      * 数据类型
37      */
38     private String dataType;
39
40     /**
41      * 顺序号
42      */
43     private Integer tagId;
44
45     /**
46      * 测点描述
47      */
48     private String tagDesc;
49
50     /**
51      * 是否可以tag
52      */
53     private Boolean enabled;
54
55     /**
56      * 关联设备
57      */
58     private String device;
59
60     /**
61      * 采集频率
62      */
63     private Integer samplingRate;
64
65     /**
66      * 创建时间
67      */
68     private Date createTime;
69
70     /**
71      * 修改时间
72      */
73     private Date updateTime;
74 }