Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
9d7e02 1 package com.iailab.module.data.channel.opcda.dto;
2
3 import io.swagger.v3.oas.annotations.media.Schema;
4 import lombok.Data;
5
6 import java.io.Serializable;
7 import java.util.Date;
8
9 /**
10  * @description: opcda_tag
11  * @author: dzd
12  * @date: 2024/7/12 11:00
13  **/
14 @Schema(description = "OPC DA TAG")
15 @Data
16 public class ChannelOPCDATagDTO implements Serializable {
17     private static final long serialVersionUID = 1L;
18
19     @Schema(description = "主键", example = "主键")
20     private String id;
21
22     @Schema(description = "服务id", example = "服务id")
23     private String serverId;
24
25     @Schema(description = "TagName", example = "TagName")
26     private String tagName;
27
28     @Schema(description = "数据类型", example = "数据类型")
29     private String dataType;
30
31     @Schema(description = "是否可以tag", example = "是否可以tag")
32     private Boolean enabled;
33
34     @Schema(description = "itemId", example = "itemId")
35     private String itemId;
36
37     @Schema(description = "创建时间", example = "创建时间")
38     private Date createTime;
39
40     @Schema(description = "修改时间", example = "修改时间")
41     private Date updateTime;
42
43 }