Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
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
package com.iailab.module.data.channel.opcda.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @description: opcda_tag
 * @author: dzd
 * @date: 2024/7/12 11:00
 **/
@Schema(description = "OPC DA TAG")
@Data
public class ChannelOPCDATagDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "主键", example = "主键")
    private String id;
 
    @Schema(description = "服务id", example = "服务id")
    private String serverId;
 
    @Schema(description = "TagName", example = "TagName")
    private String tagName;
 
    @Schema(description = "数据类型", example = "数据类型")
    private String dataType;
 
    @Schema(description = "是否可以tag", example = "是否可以tag")
    private Boolean enabled;
 
    @Schema(description = "itemId", example = "itemId")
    private String itemId;
 
    @Schema(description = "创建时间", example = "创建时间")
    private Date createTime;
 
    @Schema(description = "修改时间", example = "修改时间")
    private Date updateTime;
 
}