潘志宝
2024-09-03 f7e880deb0612ba5efe96e6ce229abd8c19bc6e7
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
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_device
 * @author: dzd
 * @date: 2024/7/12 10:42
 **/
@Schema(description = "OPC DA设备")
@Data
public class ChannelOPCDADeviceDTO implements Serializable {
    private static final long serialVersionUID = 1L;
 
    @Schema(description = "主键", example = "主键")
    private String id;
 
    @Schema(description = "服务名", example = "服务名")
    private String serverName;
 
    @Schema(description = "主机IP", example = "主机IP")
    private String host;
 
    @Schema(description = "用户名", example = "用户名")
    private String user;
 
    @Schema(description = "密码", example = "密码")
    private String password;
 
    @Schema(description = "设备名", example = "设备名")
    private String progId;
 
    @Schema(description = "设备注册表ID", example = "设备注册表ID")
    private String clsId;
 
    @Schema(description = "创建时间", example = "创建时间")
    private Date createTime;
 
    @Schema(description = "更新时间", example = "更新时间")
    private Date updateTime;
}