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