dengzedong
2024-10-14 3e18d4bfbf2c657b08b21512c2d884cc9d59df7b
提交 | 用户 | 时间
a6de49 1 package com.iailab.module.data.channel.kio.dto;
H 2
3 import io.swagger.v3.oas.annotations.tags.Tag;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6
7 import java.io.Serializable;
8 import java.util.Date;
9
10 /**
11  * @author PanZhibao
12  * @Description
13  * @createTime 2024年06月05日
14  */
15 @Data
16 @Tag(name = "KIO测点")
17 public class ChannelKioTagDTO implements Serializable {
18     private static final long serialVersionUID = 1L;
19
20
21     @Schema(description = "ID")
22     private String id;
23
24     @Schema(description = "名称")
25     private String tagName;
26
27     @Schema(description = "数据类型")
28     private String dataType;
29
30     @Schema(description = "顺序号")
31     private Integer tagId;
32
33     @Schema(description = "测点描述")
34     private String tagDesc;
35
36     @Schema(description = "是否可以tag")
37     private Boolean enabled;
38
39     @Schema(description = "关联设备")
40     private String device;
41
42     @Schema(description = "采集频率")
43     private Integer samplingRate;
44
45     @Schema(description = "创建时间")
46     private Date createTime;
47
48     @Schema(description = "修改时间")
49     private Date updateTime;
50 }